jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("div.offerimage").mouseenter(function(){
		if (!jQuery(this).is(':animated')) {
			jQuery(this).animate({opacity: .6},200);
		}
    }).mouseleave(function(){
			jQuery(this).animate({opacity: 1},200);
    });

});