$(document).ready(function()
{
	var g = 0;
	$('#bg').fadeIn(3000);
	$("#arugs")
		.click(function() { 
			window.location='arugs.htm';
		});
	$("#ceramic")
		.click(function() { 
			window.location='ceramic.htm';
		});
	$("#carpet")
		.click(function() { 
			window.location='carpet.htm';
		});
	$("#hardwood")
		.click(function() { 
			window.location='hardwood.htm';
		});
	$("#granite")
		.click(function() { 
			window.location='granite.htm';
		});
	$("#laminate")
		.click(function() { 
			window.location='laminate.htm';
		});

	$(document).mousemove(function(e){
		g = Math.round(100*(e.pageX / $(document).width())) * 2.5;
		$('#clouds').animate({
		left: g
		}, 10, function() {
		});
	});
	
	$("#com_btn").click(function()
	{

		$.get('com_video.html', function(data){
			$('#player_box').html(data)
		});
		$("#player_box").toggle();
	});	
	
	$("#close_btn").live("click", function()
	{
		$("#player_box").toggle();
	});
});
