// JavaScript Document
$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#sub').hover(over, function(){});
	$('#subnav-wrapper').hover(function(){}, out);
	$('#subnav-wrapper').hide();
    //Tell the browser to change the background when hovered over
    function over(event) {
        $('#subnav-wrapper').show();
    }
    //tell the browser to change the background to nothing when 
    //going outside the object area
    function out(event) {
	    $('#subnav-wrapper').hide();

	}
});
