function productTabsClick(link){

	$(document).ready(function() {
		//alert(link.id);
		$('div#productInfoTabs a.active').removeClass('active');
		link.className = 'active';
		$('div#productInfoTabs div').slideUp('slow');
		var id = link.id;
		$('div#productInfoTabs a#'+id).addClass('active');
		$('div#productInfoTabs div#'+id+'_content').slideDown('slow');
	});
}

$(document).ready(function() {
	$('div#galleryListHolder ul.thumbs li a').click(function(){
		$('div#galleryListHolder ul.thumbs li a.active').removeClass('active');
		$(this).addClass('active');
		var title = $(this).children('span.title').html();
		var image = $(this).children('span.bigImage').html();
		$('div#galleryText').html(title);
		$('div#galleryPreviewBack').css('background-image', "url('"+image+"')");
		$('div#galleryPreviewFront').fadeOut(1500);
		setTimeout(function(){ $('div#galleryPreviewFront').css('background-image', "url('"+image+"')"); }, 1500);
		setTimeout(function(){ $('div#galleryPreviewFront').fadeIn('fast'); }, 1500);
			//$(this);


	});
	
	$('a.loginButton').click(function(){
		$('form#loginForm').submit();
	});
	$('a#confirmYourOrder').click(function(){
		$('form#registerForm').submit();
	});	

	$('a#placeYourOrder').click(function(){
		$('form#registerForm').submit();
	});	
});