function gotolink(link){
	document.location=link;
}


$(document).ready(function(){
	$('body').pngFix( );

	$('.ccol a').each(function(){
		link = $(this).attr('href');
		if( ($(this).attr("target")) && ( (link.indexOf('.jpg') > 0) || (link.indexOf('.JPG') > 0) ) )
		{
//			$(this).lightbox();
			$(this).fancybox();
		}
	});

	//	
	$('img').hover(
		function()
		{
			if( (!$(this).hasClass('act')) && ($(this).attr('hover')) )
			{
				tmp = $(this).attr('src');
				$(this).attr('src', $(this).attr('hover'));
			}
		},
		function()
		{
			if( (!$(this).hasClass('act')) && ($(this).attr('hover')) )
			{
				$(this).attr('src', tmp);
			}
		}
	);

	$(".katalog_item").click(function(){
	  id=$(this).children().val();	  
	  $.fancybox({
	  'transitionIn'	: 'elastic',
	  'transitionOut'	: 'elastic',
	  'padding'			: 0,
	  'scrolling'		: 'no',
	  'href'			: '/inc/popup.php?rnd='+Math.random(1000)+'&'+'id='+id
		});
	  });



});


