$(document).ready(function(){
						   
	$('div.caseStudyOption input').each(function(){
												 
		$(this).click(function(){
				
				var newlocation = '/index.php?mact=CaseStudy,cntnt01,default,0&cntnt01detailpage=&cntnt01returnid=103';
				var categories = '&cntnt01category=';
				
				if ($("#optSalesTraining").attr('checked')){
					categories = categories + $("#optSalesTraining").val()+',';
					newlocation = newlocation + '&saleschecked=checked'
					}
					
				if ($("#optTelesalesTraining").attr('checked')){
					categories = categories + $("#optTelesalesTraining").val()+',';
					newlocation = newlocation + '&telesaleschecked=checked'
					}
					
				if ($("#optPresentationSkills").attr('checked')){
					categories = categories + $("#optPresentationSkills").val()+',';
					newlocation = newlocation + '&presentationchecked=checked'
					}
					
				if ($("#optNegotiation").attr('checked')){
					categories = categories + $("#optNegotiation").val()+',';
					newlocation = newlocation + '&negotiationchecked=checked'
					}
					
					
					
			newlocation = newlocation + categories;
				
				window.location = newlocation;
							   
		});
	
	});

});



