/**
 * @author marius
 */
var siteURL = "http://www.karsentoes.nl/projecten_detail.php";
$(document).ready(function(){
	rolloverImg();
});
	
	function rolloverImg(){
		var oldSrc = $('#changes').attr('src');
		$('#content-thumbs').children('img').hover(function(){
			var srcLoc = $(this).attr('src');
			srcLoc = srcLoc.replace('thumbs','main_picture');	
			$('#changes').attr('src',srcLoc);	
		},
		function(){
			$('#changes').attr('src',oldSrc);
		})
	}
	
	function goToProduct(id){
		window.location = siteURL+'?id='+id;
	}
