$(document).ready(function() {
	
	$('.views').hide();
	$('#homeShow').show();
	
	$(document).pngFix();
	
	var latestDiv = null;

	$('#productOptions li').mouseenter(function() {
		if (latestDiv != null && latestDiv.toString().length > 1) {
			$('#' + latestDiv + 'Show').hide();
			latestDiv = null;
		}
		$('#' + $(this).attr('id') + 'Show').show();
		$('#homeShow').hide();
	});
	
	$('#productOptions li').mouseleave(function() {
		latestDiv = $(this).attr('id');
	});
	
	$('#thumb2Lrg, #thumb3Lrg').hide();
	
	$("a.infopopup").fancybox({
		'width': 730,
		'height': 400,
		'titleShow': false
	});
	
	$("a.terms").fancybox({
		'width': 730,
		'height': 550,
		'titleShow': false
	});
	
	$("a.enlarge").fancybox();
	
});



