jQuery.noConflict();

var jCarStop=false;
var jPanelStay=false;

jQuery(document).ready(function(){


//PartnersList

jQuery(".indexPartnersList a").hover(
  function () {
    jQuery(this).find(".indexColor").animate({ 
   
    opacity: 1
	  }, 500 );

  },
  function () {
    jQuery(this).find(".indexColor").animate({ 
   
    opacity: 0
	  }, 200 );
    
  }
);

//Carousel

if(jQuery(".indexjCarousel li").length>1){
jQuery(".indexjCarousel").jCarouselLite({
    auto: 6000,
    speed: 1000,
	visible: 1

});
}

jQuery(".indexCarousel").hover(
  function () {
	jCarStop=true;
	jQuery(".indexCarouselComment").slideDown();
  },
  function () {
	jCarStop=false;
    if (!jPanelStay) jQuery(".indexCarouselComment").slideUp();
  }
);

jQuery(".indexClose").click(function() {
 jPanelStay=!jPanelStay;
 if(!jPanelStay) jQuery(".indexCarouselComment").slideUp();

});



//indexPhotoList

jQuery(".indexPhotoList li a").hover(
  function () {
    jQuery(this).find("span").animate({ 
   
    opacity: 0
	  }, 500 );

  },
  function () {
	  
	  if (jQuery.browser.msie) {
    jQuery(this).find("span").animate({ 
   
    opacity: 0.75
	}, 500 );
		  
	  }
	else {	  
    jQuery(this).find("span").animate({ 
   
    opacity: 1
	}, 500 );
	}
  }
);



});




