jQuery(document).ready(function()
{
	function resizing()
	{		
		if($('body').innerWidth()<1001)
		{	
			$("#all").width(1000);
		}
		if($('body').innerWidth()>=1000)
		{	
			$("#all").width("100%");
		}
	}
	
	resizing();
	
	$(window).resize(function()
	{
		resizing();
	});
	
	$('.my-button').mouseover(function()
	{
		$(this).css("background","url('/images/button-hover.jpg')");
	});
	$('.my-button').mouseout(function()
	{
		$(this).css("background","url('/images/button.jpg')");
	});
	$('.my-button').mousedown(function()
	{
		$(this).css("background","url('/images/button-click.jpg')");
	});
	$('.my-button').mouseup(function()
	{
		$(this).css("background","url('/images/button.jpg')");
	});
})