    $(window).bind('load', function () {
        $('img.fade').crossfade();
    });
    
    $(document).ready(function(){
		$("a.minibar").hover(function(){
		  $(this).parent().find("img.fade").trigger('mouseenter');
		},
		function(){
		  $(this).parent().find("img.fade").trigger('mouseleave');
		} 
		);
	});