

function mp3Player (song) {

	var playerpath = "/java/player_mp3.swf";
	var filename = "/admin_images/header_muzika/"+song;
	
	var options = {
		"autoplay": "1",
		"loop": "1",
		"bgcolor1": "000000",
		"bgcolor2": "000000",
		"volume": "30",
		"width": "1",
		"height": "1"
	};
	
	
	var mp3html = '<object type="application/x-shockwave-flash" data="' + playerpath + '" width="' + options.width + '" height="' + options.height + '"><param name="movie" value="' + playerpath + '" /><param name="wmode" value="transparent" /><param name="FlashVars" value="mp3=' + filename + '&amp;autoplay=' + options.autoplay + '&amp;loop=' + options.loop + '&amp;bgcolor1=' + options.bgcolor1 + '&amp;bgcolor2=' + options.bgcolor2 + '&amp;volume=' + options.volume + '" /></object>';
		
	$('.player').html(mp3html);
	
	$.post(urlAkcija, {page: 'mp3Player'});
	
}


function mp3PlayerStop () {
	
	$('.player').html('');
	
	$.post(urlAkcija, {page: 'mp3PlayerStop'});
	
}



//ubacuje kalendar
function calendarAjax (datum) {
	
	$('.calendar_ajax').css({'background-image': 'url(/java/loader.gif)'});

	$.post(urlAkcija, {page: 'calendarAjax', datum: datum},
		function(data) {
			
			if (data) {
				
				$('.calendar_ajax').css({'background-image': 'none'});
				$('.calendar_ajax').html(data);
				
			}
			
		}
	);
	
}

//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="/java/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="/java/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() {

	//podesava visinu za loader
	var body_visina = document.getElementById('body').offsetHeight;
	$(".loader_big").css({height : body_visina});
	
	//provera forme
	$("#form_chk").validate();
	$("#form_fav_chk").validate();
	
	//text galerija
	$("a[rel^='text_galerija']").fancybox({
	   titlePosition : 'inside',
	   cyclic : true,
	   centerOnScroll : true,
	   showNavArrows : true,
	   'titleFormat' : function(title) {
		 return '<strong>' + title + '</strong>';
		}
	});
	
	//iframe za flas 3d
	$("a[rel^='iframe_flasf_3d']").fancybox({
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'width' : 640,
		'height' : 385,
		'margin' : 0,
		'padding' : 5,
		'titleShow'		: false
	});	
	
	//iframe za virtialnu galeriju
	$(".iframe_virtual_tour").fancybox({
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'width' : 1000,
		'height' : 500,
		'margin' : 0,
		'padding' : 10,
		'titleShow'		: false
	});	
	
	//za splash stranu
	$(".label").css("opacity","0.45");
	$(".label").hover(function () {$(this).stop().animate({opacity: 1.0}, "normal");}, function () {$(this).stop().animate({opacity: 0.5}, "normal");});
	
	//show za one koji imaju js
	$("#top_hold .music").show();

});



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