var options = {
	zoomWidth: 280,
	zoomHeight: 324,
	xOffset: 35,
	yOffset: -5,
	position: "right",
	title: false,
	showEffect:'fadein',
	hideEffect:'fadeout',
	fadeoutSpeed: 'fast',
	zoomType:'reverse'
};
			
$(document).ready(

				function()
					{
					
$('#detailsMain').click(
function(e)
	{
		e.preventDefault();
		$(this).parents('ul').find('li').removeClass('selected');
		$(this).parents('li').addClass('selected');
		$('#details_educational').hide();
		$('#details_main').show();
	}
);
$('#detailsEducational').click(
function(e)
	{
		e.preventDefault();
		$(this).parents('ul').find('li').removeClass('selected');
		$(this).parents('li').addClass('selected');
		$('#details_main').hide();
		$('#details_educational').show();
	}
);
			
$('.add .quantityUp').click(
	function(e){
	e.preventDefault();
	$('#formQuantity').val(eval($('#formQuantity').val())+1);
	}
);
$('.add .quantityDown').click(
	function(e){
	e.preventDefault();
		if(eval($('#formQuantity').val()) > 1)
		{
		$('#formQuantity').val(eval($('#formQuantity').val())-1);
		}
	}
);
									
$('#enlargeButton').lightBox({imageLoading: 'resources/images/loading.gif'});

$('.zoomImage').mouseover(function(){$('#productImageZoom').show();});
$('.zoomImage').mouseout(function(){$('#productImageZoom').hide();});
	
$('.zoomImage').jqzoom(options);

$('.thumbImage').click(
function()
	{
		var thumbStd = $(this).attr('content');
		var thumbFull = $(this).attr('title');
		
		$('.imageArea').find('img').attr('src',thumbStd);
		$('.imageArea').find('a').attr('href',thumbFull);
		$('#enlargeButton').attr('href',thumbFull);
		
		$('.zoomImage').jqzoom(options);
		
		$(this).parent().find('div').removeClass('selected');
		$(this).addClass('selected');
	}
);
			
			
		}
);
