// 2 Creative Studio
jQuery(document).ready(function(){
	document.getElementById('contactUs').style.display = "none";							

 	speed = 900;
	//Append a div with hover class to all the LI
	jQuery('#navHome').append('<div class="hover"><\/div>');
	jQuery('#navHome').hover( function() {
										  		jQuery(this).children('div').fadeIn(speed); }, function() {
												jQuery(this).children('div').fadeOut(speed); });
	jQuery('#navOurWork').append('<div class="hover"><\/div>');
	jQuery('#navOurWork').hover( function() {
										  		jQuery("#navOurWork").children('div').fadeIn(speed); }, function() {
												jQuery("#navOurWork").children('div').fadeOut(speed); });
	jQuery('#navAboutUs').append('<div class="hover"><\/div>');
	jQuery('#navAboutUs').hover( function() {
										  		jQuery(this).children('div').fadeIn(speed); }, function() {
												jQuery(this).children('div').fadeOut(speed); });
	jQuery('#navService').append('<div class="hover"><\/div>');
	jQuery('#navService').hover( function() {
										  		jQuery(this).children('div').fadeIn(speed); }, function() {
												jQuery(this).children('div').fadeOut(speed); });
	jQuery('#navContact').append('<div class="hover"><\/div>');
	jQuery('#navContact').hover( function() {
										  		jQuery(this).children('div').fadeIn(speed); }, function() {
												jQuery(this).children('div').fadeOut(speed); });
});
function contact() {
				if (jQuery("#contactUs").is(":hidden")) { 
					jQuery("#contactUs").slideDown("slow"); 
					jQuery("#topShade").fadeIn("fast"); 
				} else { jQuery("#contactUs").slideUp("slow"); jQuery("#topShade").fadeOut("fast");  }
					
					if (jQuery("#indexContent").is(":hidden")) { 
					jQuery("#indexContent").slideDown("slow"); 
				} else { 
					jQuery("#indexContent").slideUp("slow"); }
					

}

