// JavaScript Document
$(document).ready(function(){ 
		
	$(".brochureBox").click(function() {
									 
		//alert($(":checkbox:checked").length);									
		//select the checkbox, count checked checkboxes	
		//if over five then
		if ($(":checkbox:checked").length > 5)
		{
			tb_show("Error!","#TB_inline?height=100&width=450&inlineId=myOnPageContent",false);
			return false;
		}
	});
	
	$("#quickSearch").change(function() {
		
        var elid = $(this).attr('value');
		
		$.scrollTo("#brochure" + elid + "", 500, { axis:'y' } );
									  
	});
	
});


