$(function(){
		var width = $(window).width();
		if(width < 1000)
			width = 1000;
		$("#dropdown-menu").css("left", width/2 - 308);
		$("#chatonline").css("left", width/2 + 250);
	$(window).bind('resize', function(){
		var width = $(window).width();
		if(width < 1000)
			width = 1000;
		$("#dropdown-menu").css("left", width/2 - 308);
		$("#chatonline").css("left", width/2 + 250);
	});
	$("#m-suppliers").hover(
		function(){
			$("#dropdown-menu").show();
		},function(){});
	$("#dropdown-menu").hover(
		function(){
			//$("#dropdown-menu").show();
		},
		function(){
			$("#dropdown-menu").hide();
		});
	
	
});
