var selectedProductImage=1;
var maxNumberOfProducts=8;
var havePushedButton=0;
function hideProduct(productToHide)
{
	var tImage=$("#img_product_"+productToHide).attr("src");
	var newImage=tImage.replace(".jpg","_dark.jpg");

	$("#img_product_"+productToHide).attr("className","off");
	$("#img_product_"+productToHide).attr("src",newImage);

	
}
function showProduct(productToShow)
{
//	alert(productToShow);
	var tImage=$("#img_product_"+productToShow).attr("src");
//	alert(tImage);
	var newImage=tImage.replace("_dark.jpg",".jpg");
	$("#img_product_"+productToShow).attr("className","on");
	$("#img_product_"+productToShow).attr("src",newImage);
	
}
function clickProduct(productToShow)
{
	hideProduct(selectedProductImage);
	showProduct(productToShow);
	var parentID=$("#img_product_"+productToShow).parent().attr("id");
	setMainProductInfo(parentID);
	selectedProductImage=productToShow;
	havePushedButton=1;
	return false;
}
function moveNext(clickedStatus)
{
	if (clickedStatus == 'Y')
	{
		havePushedButton=1;
	}
	if (selectedProductImage == maxNumberOfProducts)
	{
		var nextSelectedProductImage=1;
	}
	else
	{
		var nextSelectedProductImage=selectedProductImage+1;	
	}
	hideProduct(selectedProductImage);
//	//first we 'hide' the current image
//	var tImage=$("#img_product_"+selectedProductImage).attr("src");
//	var newImage=tImage.replace(".jpg","_dark.jpg");
//
//	$("#img_product_"+selectedProductImage).attr("className","off");
//	$("#img_product_"+selectedProductImage).attr("src",newImage);
	
	//then we 'unhide' the next image

//	var tImage=$("#img_product_"+nextSelectedProductImage).attr("src");
//	var newImage=tImage.replace("_dark.jpg",".jpg");
//	$("#img_product_"+nextSelectedProductImage).attr("className","on");
//	$("#img_product_"+nextSelectedProductImage).attr("src",newImage);
	showProduct(nextSelectedProductImage);
	var parentID=$("#img_product_"+nextSelectedProductImage).parent().attr("id");
	setMainProductInfo(parentID);


	selectedProductImage=nextSelectedProductImage;
	return false;
}
function movePrevious()
{
	if (selectedProductImage == 1)
	{
		var nextSelectedProductImage=8;
	}
	else
	{
		var nextSelectedProductImage=selectedProductImage-1;
	}
	hideProduct(selectedProductImage);
//	//first we 'hide' the current image
//	var tImage=$("#img_product_"+selectedProductImage).attr("src");
//	var newImage=tImage.replace(".jpg","_dark.jpg");
//
//	$("#img_product_"+selectedProductImage).attr("className","off");
//	$("#img_product_"+selectedProductImage).attr("src",newImage);
	
	//then we 'unhide' the next image
	showProduct(nextSelectedProductImage);
//	var tImage=$("#img_product_"+nextSelectedProductImage).attr("src");
//	var newImage=tImage.replace("_dark.jpg",".jpg");
//	$("#img_product_"+nextSelectedProductImage).attr("className","on");
//	$("#img_product_"+nextSelectedProductImage).attr("src",newImage);
	var parentID=$("#img_product_"+nextSelectedProductImage).parent().attr("id");
	setMainProductInfo(parentID);


	selectedProductImage=nextSelectedProductImage;
	return false;
}
function setMainProductInfo(parentID)
{
	//we need to get the text for the next detail product
    $.ajax({
        url: "/action/loadProductData.php",
        cache: false,
        async: false,
        data: "parentID="+parentID,
        success: function(data){
//    	alert(data);
//    	var test=data;
    	$("#productDetailsDiv").html(data);

//    	$("#productDetailsDiv").html('<a href="test">test</a>');
//    	alert($("#productDetailsDiv").html());
//    	alert(data);
    	}
      });
}
function rotateProductGallery()
{
	if (havePushedButton == 0)
		moveNext('');
//	if (selectedProductImage == maxNumberOfProducts)
//	{
//		var nextSelectedProductImage=1;
//	}
//	else
//	{
//		var nextSelectedProductImage=selectedProductImage+1;	
//	}
//	
//	//first we 'hide' the current image
//	var tImage=$("#img_product_"+selectedProductImage).attr("src");
//	var newImage=tImage.replace(".jpg","_dark.jpg");
//
//	$("#img_product_"+selectedProductImage).attr("className","off");
//	$("#img_product_"+selectedProductImage).attr("src",newImage);
//	
//	//then we 'unhide' the next image
//
//	var tImage=$("#img_product_"+nextSelectedProductImage).attr("src");
//	var newImage=tImage.replace("_dark.jpg",".jpg");
//	$("#img_product_"+nextSelectedProductImage).attr("className","on");
//	$("#img_product_"+nextSelectedProductImage).attr("src",newImage);
//	var parentID=$("#img_product_"+nextSelectedProductImage).parent().attr("id");
//	setMainProductInfo(parentID);
//
//
//	selectedProductImage=nextSelectedProductImage;
	
//	$("#img_product_"+selectedProductImage).attr("src","/images/temp-thumbnail-off.jpg");
//	$("#img_product_"+nextSelectedProductImage).attr("src","/images/temp-thumbnail.jpg");
}
