jQuery.noConflict();
jQuery(document).ready(function(){
	
	var animationLeftUp=false;
	var animationLeftDown=true;
	var animationRightUp=false;
	var animationRightDown=true;
	
	jQuery('.animLeft').click(function() {
		
		
		if (animationLeftUp==true)return;
		animationLeftUp=true
		jQuery("#menuLeftLinks").fadeIn(1400);
		jQuery('#napisKeramika').css('top', 100 + 'px').animate({top: (-10) + 'px'}, 1000);
		animationLeftDown=false;
	});
	
	jQuery('.animRight').click(function() {
		
		if (animationRightUp==true)return;
		animationRightUp=true
		jQuery("#menuRightLinks").fadeIn(1400);
		jQuery('#napisMuzej').css('top', 100 + 'px').animate({top: (-10) + 'px'}, 1000);
		animationRightDown=false;
	});
	
	jQuery('.animLeft').live('mouseenter',function() {

		jQuery("#menuLeft").css("background-image","url('/img/menuFrontKeramikaOver.jpg')");
  	});
  	
  	
  	jQuery('.animRight').live('mouseenter',function() {
  		
		//jQuery("#menuRightImg").attr('src','');
		jQuery("#menuRight").css("background-image","url('/img/menuFrontMuzejOver.jpg')");
  	});
  	
  	
  	jQuery('.animLeft').live('mouseleave',function() {
  		jQuery("#menuLeft").css("background-image","url('/img/menuFrontKeramika.jpg')");
  		//jQuery("#menuLeftImg").attr('src','/img/menuFrontKeramika.jpg');
  		
  		if (animationLeftDown==true)return;
  		animationLeftDown=true;
		
  		
  		jQuery("#menuLeftLinks").fadeOut(700);
//jQuery('#napisMuzej').animate({opacity: 1}, 1000,function (){});
		//jQuery('#napisMuzej').animate({width:'toggle'});
	  	jQuery('#napisKeramika').css('top', -10 + 'px').animate({top: (100) + 'px'}, 1000,function() {animationLeftUp=false;});
	  	//jQuery('#menuRightImg').animate({opacity: 1 }, 1000,function() {animationLeftUp=false;});
  	});

  	jQuery('.animRight').live('mouseleave',function() {
  		jQuery("#menuRight").css("background-image","url('/img/menuFrontMuzej.jpg')");
  		//jQuery("#menuRightImg").attr('src','/img/menuFrontMuzej.jpg');
  		
  		if (animationRightDown==true)return;
		animationRightDown=true;
		
		
  		jQuery("#menuRightLinks").fadeOut(700);
		//jQuery('#napisKeramika').animate({width:'toggle'});
		jQuery('#napisMuzej').css('top', -10 + 'px').animate({top: (100) + 'px'}, 1000,function() { animationRightUp=false;});
		//jQuery('#menuLeft').animate({ opacity: 1 }, 1000, function() { animationRightUp=false;});
  	});
  	
  	jQuery('.kolekcija').live('mouseenter',function() {
  		var kolId = jQuery(this).attr('kolekcijaid');
  		jQuery('.kolekcijaImg').hide();
  		jQuery('#kolekcija_img_'+kolId).show();
  		jQuery.ajax({
				type: "POST",
				url: "/site/loadKolekcije/"+kolId+"/?api",
				success: function(msg){
					jQuery('#kolekcijeContainer').html(msg);
				}
		}); 
  	});
  	
  	
	
	
  	
	
});
