
$j=jQuery.noConflict();
/*
 $class = "hoverBtn";
 fadeThis($class);
function fadeThis($class) {
	$j(function(){
	$j("a." + $class).show("fast", function() {
		$j(this).wrap("<div class=\"" + $class + "\">");
		$j(this).attr("class", "");
	});
	
	//display the hover div
	$j("div." + $class).show("slow", function() {
		//append the background div
		$j(this).append("<div></div>");
						
		//on link hover
		$j(this).children("a").hover(function(){
						
			//fade in the background
			$j(this).parent().children("div")
				.stop()
				.css({"display": "none", "opacity": "1"})
				.fadeIn(1500);
			
		},function(){
			//fade out the background
			$j(this).parent().children("div")
				.stop()
				.fadeOut(1500);
		
		});
	});
});

	
}
*/
$j(document).ready(function(){

 $j(".jfadeactive").css({'display' : 'block', 'position' : 'absolute', 'left' : '0', 'top' : '0', 'z-index' : '999', 'padding' : '0', 'margin' : '0'});
 $j(".jfadehover").css({'display' : 'block', 'position' : 'absolute', 'left' : '0', 'top' : '0', 'padding' : '0', 'margin' : '0'});

$j(".myJLink").hover(
function() {
$j(this).find(".jfadeactive").stop();	
$j(this).find(".jfadeactive").animate({"opacity": "1"}, 0);
$j(this).find(".jfadeactive").animate({"opacity": "0"}, "slow");
},
function() {
$j(this).find(".jfadeactive").animate({"opacity": "0"}, 50);
	$j(this).find(".jfadeactive").stop();	
$j(this).find(".jfadeactive").animate({"opacity": "1"}, "slow");

});
 
});
