$(document).ready(function(){
	if (!$.browser.msie ) {
	  $("#topmeni").css({'width' : '600px'})
	}
	/* ON RESIZE */
	jQuery.event.add(window, "load", resizeFrame);
	jQuery.event.add(window, "resize", resizeFrame);
	
	function resizeFrame() 
	{
		var w = $(window).width();
		if (w<=1024) {
			$("body").css({'margin-top' : '-3%'});
			$("#body").css({'width' : '1024px'});
			$(".textswap").css({'padding-left' : '100px'});
			
		} else {
			$("body").css({'margin-top' : '3%'});
			$("#body").css({'width' : '100%'});
			$(".textswap").css({'padding-left' : null});
			
		}
	}
	/* END RESIZE */
	
	/* PRELOAD IMAGES */
	var cache = [];
	$.preLoadImages = function() {
		var args_len = arguments.length;
		for (var i = args_len; i--;) {
			var cacheImage = document.createElement('img');
			cacheImage.src = arguments[i];
			cache.push(cacheImage);
		}
	}
			  		
	jQuery.preLoadImages("img/top-meni-r-o.png","img/top-meni-l-o.png","img/top-meni-r.png","img/top-meni-l.png","img/bt-meni-r.png","img/bt-meni-l.png","img/bt-meni-l-o.png","img/bt-meni-r-o.png", "img/p00.jpg", "img/p01.jpg", "img/p02.jpg", "img/p03.jpg", "img/p04.jpg", "img/p05.jpg", "img/p06.jpg", "img/p07.jpg", "img/p08.jpg", "img/p09.jpg", "img/p10.jpg");

	/* END PRELOAD IMAGES */
	
		
// CLICK za MENI --------------------------------------------
		$("li a").click(function() {	
			$(".active").removeClass("active");
			$(this).parent().addClass("active");
			
			$("#tekstholder .activetxt").css("display","none");
			$("#tekstholder .activetxt").removeClass("activetxt");
	
			var valueulid = '#' + $(this).attr('id') + 'txt';
			var urlbgimg = 'url(img/' + $(this).attr('id') + '.jpg)';
			$(valueulid).addClass("activetxt");
				if ($.browser.msie ) {
					  $(valueulid).css("display","block");
				} else {
					$(valueulid).fadeIn("slow");
				}
			
			
			$("#desnafotka").css("display","none");
			$("#desnafotka").css('background-image', urlbgimg);
			if ($.browser.safari ) {
					$("#desnafotka").css("display","block");
			} else {
					$("#desnafotka").fadeIn("slow");
			}
			
		});
// CLICK za HOME --------------------------------------------
		$("#p00").click(function() {	
			$(".active").removeClass("active");
			
			$("#tekstholder .activetxt").css("display","none");
			$("#tekstholder .activetxt").removeClass("activetxt");
	
			var valueulid = '#' + $(this).attr('id') + 'txt';
			var urlbgimg = 'url(img/' + $(this).attr('id') + '.jpg)';
			$(valueulid).addClass("activetxt");
			if ($.browser.msie ) {
					  $(valueulid).css("display","block");
				} else {
					$(valueulid).fadeIn("slow");
			}
			
			
			$("#desnafotka").css("display","none");
			$("#desnafotka").css('background-image', urlbgimg);
			if ($.browser.safari ) {
					$("#desnafotka").css("display","block");
			} else {
					$("#desnafotka").fadeIn("slow");
			}
			
			
		});
		
// POPUP kontakt --------------------------------------------
			$("a#kontakt").fancybox({
				'zoomSpeedIn'			: 0,
				'zoomSpeedOut'			: 0,
				'frameWidth'			: 483,
				'frameHeight'			: 430,
				'easingIn'				: 'easeOutBack',
				'easingOut'				: 'easeInBack',
				'overlayOpacity'		: 0.81 //sa ovom vrednosti imamo close
			});
// POPUP more info --------------------------------------------
			$("a.more").fancybox({
				'zoomSpeedIn'			: 0,
				'zoomSpeedOut'			: 0,
				'frameWidth'			: 600,
				'frameHeight'			: 480,
				'easingIn'				: 'easeOutBack',
				'easingOut'				: 'easeInBack',
				'overlayOpacity'		: 0.81 //sa ovom vrednosti imamo close
			});
//E-mail show -----------------------------------------
		   $('.email').each(function() {
			  var $email = $(this);
			  var address = $email.text()
				 .replace(/\s*\[at\]\s*/, '@')
				 .replace(/\s*\[dot\]\s*/g, '.');
			  $email.html('<a href="mailto:' + address + '">'
				 + address +'</a>');
   		});
	

});