/*************************************************************************
    WIP Connector Javascript File
    ponticlaro.com
*************************************************************************/
function handleJquery(){   
    /*********************************************************
       Menu
    *********************************************************/    
    /*
    $("ul.sf-menu").supersubs({ 
            minWidth:    8,   // minimum width of sub-menus in em units 
            maxWidth:    27,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        }).superfish({ 
            hoverClass:  'sfHover',          
            delay:       500,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
        */
        
    /*********************************************************
        BX Slider
    *********************************************************/    
    $('#home-slider').bxSlider({
        auto: true,
	autoControls: false,
        pager: true,
        displaySlideQty: 1,
        moveSlideQty: 1,
        hideControlOnEnd: true,
        autoHover: true, 
        speed: 1000,
        controls: true,
        pager: true,
	pause: 5000
    });

    /*********************************************************
        Item Image Rollovers
    *********************************************************/        
    $(".item-image a").hover(function(){  
        $(this).find("div").fadeIn();  
    }, function(){  
        $(this).find("div").fadeOut();  
    });    

};



