//ubacuje captcha kod
function codeChange () {

	$.post(urlAkcija, {page: 'codeChange'},
		function(data) {
			
			if (data) {
				$('.codeChange').html(data);
			} 
			
		}
	);
	
}





//ispis obavestenja
function info (text) {
	
	if ($('.obavesetenje_info').length) {
		
		$('.obavesetenje_info').append('<br /><hr>'+text+' <a onclick="infoClose();"><img src="/java/close.png" /></a>');
		
	} else {
		
		$('body').prepend('<div class="obavesetenje_info">'+text+' <a onclick="infoClose();"><img src="/java/close.png" /></a></div>');
		$('body').prepend('<div class="loader_obavesetenje"></div>');
		
	}
	
	$('.loader_obavesetenje').fadeIn('slow',function(){
		$('.obavesetenje_info').animate({'top':'20px'},500);
	});
	
}



//rucno zatvaranje info
function infoClose () {

	$(".obavesetenje_info").remove();
	$(".obavesetenje_info").fadeOut("slow");
	$(".loader_obavesetenje").remove();
	$(".loader_obavesetenje").fadeOut('slow');
	
}




//funkcija za jumpmenu
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



$(document).ready(function() {
	
	///cufon
	Cufon.replace('h1', {hover: true, fontFamily: 'Andantino script'});
	
	//provera forme
	$("#form_chk").validate();

	
	//slike galerija
	$("a[rel^='slikaGalerija']").fancybox({
	   'titleShow'		: false
	});
	
	//iframe za video
	$("a[rel^='iframe_video']").fancybox({
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'width' : 640,
		'height' : 385,
		'margin' : 0,
		'padding' : 5,
		'titleShow'		: false,
		'showNavArrows' : false
	});	
	

});


//$('#heder').html(x_poz +', '+ y_poz);
//window.alert(slikaW);
