$(document).ready(function(){
	$(".cell_cover, .cell_cover_right").hover(
		function(){ $(this).addClass("cell-sel") },
		function(){ $(this).removeClass("cell-sel") }
	);

	var img_loader = $("#img-loader");
	var obj_content = $("#content");

	$(".get-fquote").click(function(){
		var link = $(this).attr("href");

		obj_content.slideUp('slow', function(){
			img_loader.slideDown('slow');
			
			$.get(link, function(data){
				img_loader.slideUp('slow', function(){
					obj_content.html(data).slideDown('slow');
				});
			});
		});

		return false;
	});
});
