$(document).ready(function(){
	$("a.cb-image").colorbox({
		maxWidth: 	'90%',
		maxHeight: 	'90%',
		photo: 		true
	});
	
	$(".article-list tr").hover(
		function(){ $(this).addClass('over'); },
		function(){ $(this).removeClass('over'); }
	);
	
	$("#sport-products .colorbox").colorbox({
		minHeight: 	400
	});
	
	$(".colorbox").colorbox({
		maxWidth: 	 '80%',
		opacity:     0.65
	});
	
	$("#sampleRequestLink").click(function(){
		url = $(this).attr('href');
		
		$.fn.colorbox({
			iframe:  true,
			href: 	 url+'?layout=false',
			width: 	 700,
			height:  450,
			opacity: 0.65
		});
		
		return false;
	});
});

