var $j = jQuery.noConflict();
$j(document).ready(function(){
                jQuery.fn.swapimage = function() {
   jQuery(this).hover(function() {
       currentImage = jQuery(this).attr('src');
       jQuery(this).attr('src',jQuery(this).attr('rel'))}, function(){
                jQuery(this).attr('src',currentImage)
           });

           // preload image
           var preloadImage = new Image;
           preloadImage.src = jQuery(this).attr('rel');
}
                $j(".rollOver").swapimage();
                $j(".nav")
                	.superfish({
                		animation : { opacity:"show", height:"show" },
                		delay		: 250
                	})
                	.find(">li:has(ul)")
                		.mouseover(function(){
                			$j("ul", this).bgIframe({opacity:false});
                		})
                		.find("a")
                			.focus(function(){
                				$j("ul", $j(".nav>li:has(ul)")).bgIframe({opacity:false});
                			});
            });


