jQuery(document).ready(function(){
if(jQuery(".mc-gallery-change-img")){
setInterval(function(){
if(jQuery('.mc-gallery-hover-img:hover').length==0){
jQuery(".mc-gallery-change-img").each(function(){
var ran=Math.floor(Math.random() * 3);
if(ran==0){
jQuery(this).fadeIn(400);
}else{
jQuery(this).fadeOut(400);
}});
}}, 2000);
}
if(jQuery(".mc-gallery-hover-img")){
jQuery(".mc-gallery-hover-img").mouseenter(function(){
jQuery(this).finish().animate({opacity: 1}, 400);
}).mouseleave(function(){
jQuery(this).finish().animate({opacity: 0}, 400);
});
}});