jQuery(document).ready(function(){

try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
    jQuery(".jsHide").hide();
    jQuery("#mycarousel-wrapper").show();
    
    

    
    jQuery('.keywords').click(function(){
        jQuery('.keywords').val("");
    });

    jQuery(document).ready(function(jQuery){
        jQuery('a[rel*=facebox]').facebox()
    });
	
	

			
			
			
    jQuery(function(){
    
        // find the div.fade elements and hook the hover event
        
        jQuery('div.fade').hover(function(){
        
            // on hovering over find the element we want to fade *up*
            
            var fade = jQuery('> div', this);
            
            
            
            // if the element is currently being animated (to fadeOut)...
            
            if (fade.is(':animated')) {
            
                // ...stop the current animation, and fade it to 1 from current position
                
                fade.stop().fadeTo(0, 1);
                
            }
            else {
            
                fade.fadeIn(0);
                
            }
            
        }, function(){
        
            var fade = jQuery('> div', this);
            
            if (fade.is(':animated')) {
            
                fade.stop().fadeTo(350, 0);
                
            }
            else {
            
                fade.stop().fadeOut(550);
                
            }
            
            return false;
            
        });
        
    });
    
    jQuery("div.current > div").fadeIn(0);
    
    
    
    
});