

//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");
	
}


function calendarAjax (datum) {
	
	$('.calendar_ajax').css({'background-image': 'url(/js/loader2.gif)'});

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



function dostavaChange () {
	
	if ($('#dostava').is(':checked')) { 
		$('.ship_polje').attr("disabled", true); 
		$('.ship_polje_back').css({'color': '#cccccc'});
		$('.ship_polje').css({'background-color': '#cccccc', 'border': '1px solid #D3D3D3'});
		$('.ship_polje_back .warning').css({'color': '#cccccc'});
	} else { 
		$('.ship_polje').removeAttr("disabled");
		$('.ship_polje_back').css({'color': '#333333'});
		$('.ship_polje').css({'background-color': '#F4F4F4', 'border': '1px solid #B2B2B2'});
		$('.ship_polje_back .warning').css({'color': '#CC0000'});
	}

}




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



$(document).ready(function() {
	
	//slider u hederu
	$('#slides').slides({
		preload: true,
		preloadImage: 'js/ajax_loader.gif',
		play: 5000,
		pause: 2500,
		hoverPause: true
	});
	
	
	//provera forme
	$("#form_chk").validate();
	$("#form_newsletter").validate();
	
	//za galeriju
	$('.gallery a').lightBox();
	
	//za checkbox na checkout strani
	dostavaChange ();
	
	
	$('#container-1').tabs();
	$('#container-2').tabs(2);
	$('#container-3').tabs({ fxSlide: true });
	$('#container-4').tabs({ fxFade: true, fxSpeed: 'fast' });
	$('#container-5').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });
	$('#container-6').tabs({
		fxFade: true,
		fxSpeed: 'fast',
		onClick: function() {
			alert('onClick');
		},
		onHide: function() {
			alert('onHide');
		},
		onShow: function() {
			alert('onShow');
		}
	});
	$('#container-7').tabs({ fxAutoHeight: true });
	$('#container-8').tabs({ fxShow: { height: 'show', opacity: 'show' }, fxSpeed: 'normal' });
	$('#container-9').tabs({ remote: true });
	$('#container-10').tabs();
	$('#container-11').tabs({ disabled: [3] });

	$('<p><a href="#">Disable third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {
		$(this).parents('div').eq(1).disableTab(3);
		return false;
	});
	$('<p><a href="#">Activate third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {
		$(this).parents('div').eq(1).triggerTab(3);
		return false;
	});
	$('<p><a href="#">Enable third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {
		$(this).parents('div').eq(1).enableTab(3);
		return false;
	});

});


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