$(document).ready(function(){
	$(".wrapperButton").hover(function(){
		$(this).children(".wrapperButtonM").animate({
			width: 60
		}, 200);
	}, function(){
		$(this).children(".wrapperButtonM").animate({
			width: 0
		}, 200);
	});
	$(".wrapperButton").click(function(){
		var url = $(this).attr("url");
		if(url != "" && url != null)
		{
			window.location = url;
		}
	});
	
	/*$("#panelList").hover(function(){
		$(this).parent().animate({
			height: 376
		}, 1000);
	}, function(){
		$(this).parent().animate({
			height: 47
		}, 1000);
	});*/
	
});