// JavaScript Document
$(document).ready(function(){ 
		
	$(".brochureBox").click(function() {
									 
		//select the checkbox, count checked checkboxes	
		//if over five then
		if ($("input[name='brochure'][checked]").length > 5)
		{
			tb_show("Error!","#TB_inline?height=100&width=450&inlineId=myOnPageContent",false);
			return false;
		}
	});
	
});

