var dom = {};
dom.query = jQuery.noConflict(true);

dom.query(function()
{


	dom.query("#aboutus").click(function(event) {
		event.preventDefault();
		dom.query("#aboutussub").show('slow');
		dom.query("#ourservicelinksub").hide('slow');
		dom.query("#ourcustomersub").hide('slow');

		dom.query("#proudctssub").hide('slow');
		dom.query("#faqsub").hide('slow');
	});

	dom.query("#ourservicelink").click(function(event) {
		event.preventDefault();
		dom.query("#ourservicelinksub").show('slow');
		dom.query("#aboutussub").hide('slow');
		dom.query("#ourcustomersub").hide('slow');
		dom.query("#proudctssub").hide('slow');
		dom.query("#faqsub").hide('slow');
	});

	dom.query("#ourcustomer").click(function(event) {
		event.preventDefault();
		dom.query("#ourcustomersub").show('slow');
		dom.query("#aboutussub").hide('slow');
		dom.query("#ourservicelinksub").hide('slow');
		dom.query("#proudctssub").hide('slow');
		dom.query("#faqsub").hide('slow');
	});

	dom.query("#faq").click(function(event) {
		event.preventDefault();
		dom.query("#faqsub").show('slow');
		dom.query("#aboutussub").hide('slow');
		dom.query("#ourservicelinksub").hide('slow');
		dom.query("#ourcustomersub").hide('slow');
		dom.query("#proudctssub").hide('slow');
	});

	dom.query("#proudcts").click(function(event) {
		event.preventDefault();
		dom.query("#proudctssub").show('slow');
		dom.query("#aboutussub").hide('slow');
		dom.query("#ourservicelinksub").hide('slow');
		dom.query("#ourcustomersub").hide('slow');
		dom.query("#faqsub").hide('slow');
	});

	dom.query("#aboutus").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#ourcustomer").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#ourservicelink").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#mainlink").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#proudcts").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#faq").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#my").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#call").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#support").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#enter").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#bd").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});
	dom.query("#bdTitle").hover(function(){dom.query(this).fadeOut(100);dom.query(this).fadeIn(500);});

});
