function currencyConvert(n){
    n = Math.round( (n*100) )/100;
    strN = new String( n );
    if( strN.indexOf( "." ) == -1 )
        strN += ".00";
    else if( strN.indexOf( "." ) == strN.length-2 )
        strN += "0";
    return strN;
}

$(document).ready(function(){
    $('#footer-gallery-content').jCarouselLite({
        btnNext: "#footer-gallery-right",
        btnPrev: "#footer-gallery-left",
        visible: 1,
        circular: false
   }); 
    

    $('#menu li').mouseenter(function(){
        var menu=$(this).find('.dropdown-list:hidden');        
        menu.slideDown();
    }).mouseleave(function(){
        var menu=$(this).find('.dropdown-list:visible');
        menu.slideUp();
    });
});




