$(document).ready(function(){
	// If monitor size is 1024px, then stop scrolling
	var xwidth = document.body.offsetWidth;
	if (xwidth<=1024) {
	 $('#header').css('width','990px');
	 $('.inner_wrapper').css('margin','0 10px 0 10px');
	}
	
	// Sub Nav functionality
	$('#main_nav ul li').hover(function() {
		$('.sub_nav_inner').hide();
	});
	$('#core').hover(function() {
		$('#sub_nav_core').show();
	});
	$('#services').hover(function() {
		$('#sub_nav_services').show();
	});
	$('#products').hover(function() {
		$('#sub_nav_products').show();
	});
	
	//Show Downloads Title only if there are downloads on the page
	if ($('.downloads_container').length) {
		$('#downloads_title').show();
  }
});
