//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').fadeIn('slow');
		$('.obavesetenje_info').append('<br /><hr>'+text+' <a onclick="infoClose();"><img src="/js/close.png" /></a>');
		//setTimeout('$(".obavesetenje_info").remove();$(".obavesetenje_info").fadeOut("slow");',5000);
		
	} else {
		
		$('body').prepend('<div class="obavesetenje_info">'+text+' <a onclick="infoClose();"><img src="/js/close.png" /></a></div>');
		$('.obavesetenje_info').fadeIn('slow');
		//setTimeout('$(".obavesetenje_info").remove();$(".obavesetenje_info").fadeOut("slow");',5000);
		
	}
	
}



//rucno zatvaranje info
function infoClose () {

	$(".obavesetenje_info").remove();
	$(".obavesetenje_info").fadeOut("slow");
	
}




$(document).ready(function() {
	
	//provera forme
	$("#form_chk").validate();
	$("#form_newsletter").validate();
	
	//galerija
	$('#gallery_view a').lightBox();
	
	//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
	});	


});


//$('#heder').html(x_poz +', '+ y_poz);
//window.alert(slikaW);
