$(document).ready(function(){
     
    //Preload Images
    var images = new Array();
    images.push("./public/images/Button-Hover.png");
    images.push("./public/images/Button-Hover2.png");
    images.push("./public/images/Button-Clicked.png");
    images.push("./public/images/Button-Clicked2.png");
    images.push("./public/images/Contact-Button-Hover.png");
    images.push("./public/images/Contact-Button-Click.png");
    
    for(var i=0;i<images.length;i++){
        try{
            var img = new Image();
            img.src = images[i];
        }catch(err){}
    }
     
    //$( "#tabs" ).tabs();

    $('.top-nav-child').hover(function(){
															
        dropdown = $(this).children('.dropdown');
        ($.browser.msie)?dropdown.toggle():dropdown.stop(true, true).fadeIn();
														
    }, function(){
															
        ($.browser.msie)?dropdown.toggle():dropdown.stop(true, true).fadeOut();
															
    });
    //  $('.xclose').click(function(){
    //							   $(this).parent().fadeOut();
    //							   });
    $('.top-nav-child').hover(function(){
        $(this).css('background-image','url(./public/images/navActive.png)');
			

    }, function(){
        if($(this).is(':not(.current)')){
            $(this).stop().css({
                'background-image':'none'
            });
			
        }
    });
			
       
});
