jQuery.noConflict();
var $j = jQuery;
$j(document).ready(function() {
	if ($j('#hover_fade').length > 0) {
		$j('#hover_fade a').removeAttr("href");
		if ($j('.current').length==0) {
			$j('#hover_fade li:first').addClass("current");
			var str = ($j('#hover_fade li:first').attr("class")).split(' ');
			var str_id = str[1].split('-');
			var id = str_id[2];
			$j('#'+id+' img').addClass('ad_visible');
		}
		$j('#hover_fade li').hover(function(){
			$j('.current').removeClass("current");
			$j(this).addClass("current");
			$j('.ad_visible').removeClass('ad_visible');
			var str = ($j(this).attr("class")).split(' ');
			var str_id = str[1].split('-');
			var id = str_id[2];
			$j('#'+id+' img').addClass('ad_visible');
		})
	}
});
