function init(id){
//$(".jCarouselLite img[id!='"+id+"']").animate({ opacity: 0.5}, 100);

$(".jCarouselLite div.im[id!='"+id+"']").animate({ opacity: 0.3},100);

}
function uninit(id){
//$(".jCarouselLite a").animate({ opacity: 0.3}, 1);
$(".jCarouselLite div.im").animate({ opacity: 1}, 1);
}
function uninit_2(id){
//$(".jCarouselLite a").animate({ opacity: 0.3}, 1);
$(".jCarouselLite div.im[id!='"+id+"']").animate({ opacity: 0.3}, 1);
}
jQuery(document).ready(function() {
    

 $(".next,.prev").hover(function(){



     $(this).animate({ opacity: 0.3}, 50);



 },function(){

    $(this).animate({ opacity: 1}, 50);
 });

 $(".jCarouselLite div.im").hover(function(){

     id=$(this).attr("id");
     
     $(this).animate({ opacity: 1}, 50);

     init(id);
     
 },function(){
     
    id=$(this).attr("id");
    
    //$(".jCarouselLite img").animate({ opacity: 1}, 100);
     //uninit(id);
 });
 $(".jCarouselLite").hover(function(){
 },function(){
     uninit(id);
 });
uninit();
});
