// AJAX INIT
function $$$(id) {
	return document.getElementById(id);
}
function khoitao_ajax()
{
	var x;
	try 
	{
		x	=	new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
    	try 
		{
			x	=	new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(f) { x	=	null; }
  	}
	if	((!x)&&(typeof XMLHttpRequest!="undefined"))
	{
		x=new XMLHttpRequest();
  	}
	return  x;
}
function	Forward(url)
{
	window.location.href = url;
}
function	_postback()
{
	return void(1);
}

$(function() {
	$("#slwi_1").hover( 
		function(){$("#slwi_1 .menu").stop().animate({height: 70}, 150);},
		function(){$("#slwi_1 .menu").stop().animate({height: 25}, 600);}
	);
	$("#slwi_2").hover( 
		function(){$("#slwi_2 .menu").stop().animate({height: 70}, 150);},
		function(){$("#slwi_2 .menu").stop().animate({height: 25}, 600);}
	);
	$("#slwi_3").hover( 
		function(){$("#slwi_3 .menu").stop().animate({height: 70}, 150);},
		function(){$("#slwi_3 .menu").stop().animate({height: 25}, 600);}
	);
	$("#slwi_4").hover( 
		function(){$("#slwi_4 .menu").stop().animate({height: 70}, 150);},
		function(){$("#slwi_4 .menu").stop().animate({height: 25}, 600);}
	);
});
