$(document).ready(function(){
$("#services-1").css('display','none');
$("#product").css('display','none');
$("#news").css('display','none');
$("#global").css('display','none');



$(".nav2 li:first a").addClass("active");


/*===================================*/

$("ul.about a").mouseover(function(){
$("ul.about a").removeClass();
$(this).addClass("active");
var contentid = ($(this).attr("href"));
$("#about-1").css('display','none');
$("#services-1").css('display','none');
$("#product").css('display','none');
$("#news").css('display','none');
$("#global").css('display','none');

$(contentid).css("display","block");
});


$("#shadowbox_body").css('overflow','auto');

	$("#aboutUs").click(function (){
		//alert("yes");
		window.location.href='about-us.html';			
	});
	$("#service").click(function (){
		//alert("yes");
		window.location.href='services.html';
	});
	$("#productHandle").click(function (){
		//alert("yes");
		window.location.href='product.html';
	});
	$("#industryLink").click(function (){
		//alert("yes");
		window.location.href='news.html';
	});
	$("#global-net").click(function (){
		//alert("yes");
		window.location.href='global-net.html';
	});
});

