// JavaScript Document


if($('#side'))
{
	$(document).ready(function() {
    	$('#side').cycle({
			fx: 'fade',
			speed: '1500',
			timeout: '8000'
		});
	    $('#side2').cycle({
			fx: 'fade',
			speed: '1500',
			timeout: '8000'
		});
	    $('#product-rotate-1').cycle({
			fx: 'fade',
			speed: '1500',
			timeout: '8000'
		});
	    $('#product-rotate-2').cycle({
			fx: 'fade',
			speed: '1500',
			timeout: '8000'
		});
	    $('#product-rotate-3').cycle({
			fx: 'fade',
			speed: '1500',
			timeout: '8000'
		});
	    $('#product-rotate-4').cycle({
			fx: 'fade',
			speed: '1500',
			timeout: '8000'
		});
	});
}

$(document).ready(function() {
    $('#cycle').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});


function showLocations()
{
	if(document.getElementById("map").style.display == 'inline')
	{
		document.getElementById("map").style.display = 'none';
	}
	else
	{
		document.getElementById("map").style.display = 'inline';
	}
}

function showProduct(productId)
{
	$('#'+productId).toggle();
	$('#'+productId).center();
}


