// JavaScript Document


var $j = jQuery.noConflict();
$j(document).ready(function(){  
						   
$j(".secondMenu").css("display","none"); 
$j(".downMenu").hover(
    function () {
       $j(this).next("div").animate({opacity: "show"}, "200"); 
	   $j(this).addClass("menuHover");	 
	  },
   	function () {  	
	var   link = $j(this);
	 $j(this).next("div").hover(
			function () {
			   $j(this).css("display","block");	 
			   link.addClass("menuHover");	 
			  },
			function () {  
			  $j(this).css("display","none");
			   link.removeClass("menuHover");
			  }    
			);	
	  $j(this).next("div").css("display","none"); 
	 $j(this).removeClass("menuHover");
	});		


$j(".photoLine img").css({ 'opacity':'0.8'});
$j(".currentImage").css ({'opacity':'1'});

	

$j(".photoLine img").hover(
    function () {
       $j(this).animate({ 'opacity':'1'},"100");
	  },
   	function () {  	
	  $j(this).animate({ 'opacity':'0.8'},"50");
	  $j(".currentImage").css ({'opacity':'1'});
	});		
$j('horizontal_carousel').hide();
});
