jQuery(document).ready(function(){
    jQuery(window).bind("resize", resizeWindow);
    function resizeWindow(e){
        var newWindowHeight = jQuery(window).height();
        var newWindowWidth = jQuery(window).width();
        
        if ((newWindowWidth >= 1024)) {
            //alert('Screen size: 1024x768 or larger');
            jQuery("#head ul.menu li a").css({
                fontSize: "13px",
            
            });
            
        }
        else {
            //   alert('Screen size: less than 1024x768, 800x600 maybe?');
            
            jQuery("#head ul.menu li a").css({
                fontSize: "10px",
            
            });
            
        }
    }
});
