// JavaScript Document

function logo11()
	{
		window.open("http://www.dcad.in")
	}
	function logo12()
	{
		window.open("http://www.eweighing.com")
	}
	function logo13()
	{
		window.open("http://www.delmerindia.com")
	}
	
	function onmousego(root)
			{
				$("#"+root).stop(true, true).slideDown();
			}
			
			function onmouseno(root)
			{
				$("#"+root).stop(true, true).slideUp();
			}
			
			
$(document).ready(function() {
		$("#openCloseWrap").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-92px"
					}, 500 );
				$("#topMenuImage").html('<img src="open.png" alt="open" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider").animate({ 
					marginTop: "0px"
					}, 500 );
				$("#topMenuImage").html('<img src="close.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});			
			
