$(function(){

	$('.sparkbox-custom').sbCustomSelect();

	$("#icons li a img").hover(function(){
				if($(this).attr("src").indexOf("_hover") == -1) {
					var newSrc = $(this).attr("src").replace(".jpg","_hover.jpg#hover");
					$(this).attr("src",newSrc);
				}
			},
			function(){
				if($(this).attr("src").indexOf("_hover.jpg#hover") != -1) {
					var oldSrc = $(this).attr("src").replace("_hover.jpg#hover",".jpg");
					$(this).attr("src",oldSrc);
				}
			});
	$('.produkt table tr').find('td:first').css({'text-align':'right','font-weight':'bold','padding-left':'20px','padding-right':'10px','width':'150px'})
	$('.produkt table tr').find('td:eq(1)').css({'width':'170px','padding-right':'20px'})
			
})
