$j(document).ready(function(){ // ----- KAD SE STRANICA UCITA IZVRSI OVO -----

	// Za K - Gallery 1.0
	KGallery10();

});

function KGallery10 () {
	
	$j("#Str a:has(img:not([lang=nope]))").fancybox({
		'overlayShow'	: false,
		'titlePosition'  : 'over',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	$j("#big tbody a").fancybox({
		'overlayShow'	: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'width'			: 700,
		'height'		: 350,
		'type'			: 'iframe'
	});
	
	// Efekti prelaskom misa preko
	$j("#kgallerycontainer div a img").mouseenter(function() {
		$j(this).fadeTo("normal", 0.5);
	}).mouseleave(function(cTxt) {
		$j(this).fadeTo("fast", 1);
	});
	
}
