$(document).ready(
function()
{

	
	var spacerHeight = $("#spacer").height();

	if (spacerHeight > $("#content").height() )
	{
		$("#content").height(spacerHeight);
	}

	$("#nav-previous").hover(
		function()
		{
			$("#content-container").addClass("page-left");
		},
		function()
		{
			$("#content-container").removeClass("page-left");
		}
	);

	$("#nav-next").hover(
		function()
		{
			$("#content-container").addClass("page-right");
		},
		function()
		{
			$("#content-container").removeClass("page-right");
		}
	);
		
	$(".previous").hover(
		function()
		{
			$("#nav-previous").addClass("highlight");
			$("#content-container").addClass("page-left");
		},
		function()
		{
			$("#nav-previous").removeClass("highlight");
			$("#content-container").removeClass("page-left");
		}
	);
	
	$(".next, .collection-product-group-right-item .collection-product-image").hover(
		function()
		{
			$("#nav-next").addClass("highlight");
			$("#content-container").addClass("page-right");
		},
		function()
		{
			$("#nav-next").removeClass("highlight");
			$("#content-container").removeClass("page-right");
		}
	);
});