// JavaScript Document

$(document).ready(function(){
	
	$("#btn_print_it a").click(function() {
		var href = $(this).attr('href');
		var pos = href.lastIndexOf('/');
		var selected = href.substring(pos+1, href.length);
		
		if(selected != ''){
			window.open(href);
		}
		
		return false;
	});

	$("img.coloursheets").toggle(function(){
		$(this).css('border', '2px solid #FBB040');
		
		var id = $(this).attr('id');
		var href = $('#btn_print_it a').attr('href');
		
		$('#btn_print_it a').attr('href', href+id);
		
	}, function(){
		$(this).css('border', '2px solid #c0c0c0');
		
		var id = $(this).attr('id');
		var href = $('#btn_print_it a').attr('href');
		var pos = href.lastIndexOf('/');
		var selected = href.substring(pos+1, href.length);
		selected = selected.replace(id, '');
		
		$('#btn_print_it a').attr('href', href.substring(0, pos+1)+selected);
	});

});