// JavaScript Document
// functions for product detail images
function changeImg(src) {
	var oldSrc = document.getElementById('mainImg').src.split('/');
	oldSrc[oldSrc.length-1] = src;
	document.getElementById('mainImg').src = oldSrc.join('/');
}

function largeImg(src) {
	var oldSrc = document.getElementById('mainImg').src.split('/');
	oldSrc[oldSrc.length-1] = src;
	window.open(oldSrc.join('/'),"viewLarge","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=770,height=600,top=30,left=30");
}

function newWindow() {
	window.open("","windowname","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450,height=425,top=30,left=30");
}



//fade to black
/*
$(document).ready(function()
{
	$('body').click(function()
	{
		$(this).fadeOut("slow", function()
		{
			if(document.body.className == 'design-1')
			{
				$('body').removeClass('design-1');
				$('body').addClass('design-2');
			}
			else
			{
				$('body').removeClass('design-2');
				$('body').addClass('design-1');
			}
		});
		$(this).fadeIn("slow");
	});
});
*/
