$(document).ready(function() {
	if(doDocReady==1){
		$("#previous").bind("mouseenter",function(){
		      $("#navibuttons").css({"background" : "url("+theprodurl+"\/images\/buttons-all.gif) no-repeat "+buttonright+"px -194px"});
		    }).bind("mouseleave",function(){
		      $("#navibuttons").css({"background" : "url("+theprodurl+"\/images\/buttons-all.gif) no-repeat "+buttonright+"px 0px"});
		return false;	
		});
		$("#next").bind("mouseenter",function(){
		      $("#navibuttons").css({"background" : "url("+theprodurl+"\/images\/buttons-all.gif) no-repeat "+buttonright+"px -97px"});
		    }).bind("mouseleave",function(){
		      $("#navibuttons").css({"background" : "url("+theprodurl+"\/images\/buttons-all.gif) no-repeat "+buttonright+"px 0px"});
		return false;	
		});
		if(myprodsID.length<=1){
			$("#navibuttons").css({'visibility' : 'hidden'});
		}else{
			$("#navibuttons").css({'visibility' : 'visible'});
		}
		if(myprodsNutriImg[currProd]==''){
			$('#nutrition').css({'visibility' : 'hidden'});
		}else{
			$('#nutrition').css({'visibility' : 'visible'});
		}
		if(currProd==0){theidisprev=myprodsID.length-1;}else{theidisprev=parseInt(currProd)-1;};
		if(currProd==myprodsID.length-1){theidisnext=0;}else{theidisnext=parseInt(currProd)+1;};
		$('#preload').prepend('<img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[currProd]+'" \/>');
		$('#preload').prepend('<img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[theidisnext]+'" \/><img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[theidisprev]+'" \/>');
		$('#product').empty();
		$('#product').prepend('<img border="0" src="'+theprodurl+'\/products\/'+myprodsImage[currProd]+'" \/>', function(){
			$('#product').show("slide", { direction: "left"}, 400);
		});
	
		$('#next').click(function(){
			var theidis = $(this).attr('rel');
			var toLoadID = myprodsID[theidis];
			var toLoadIm = myprodsImage[theidis];
			var toLoadTx = myprodsText[theidis];
			var toLoadTt = myprodsTitle[theidis];
			var toLoadTi = myprodsTitleImg[theidis];
			var toLoadNu = myprodsNutriImg[theidis];
			if(theidis==0){theidisprev=myprodsID.length-1;}else{theidisprev=parseInt(theidis)-1;};
			if(theidis==myprodsID.length-1){theidisnext=0;}else{theidisnext=parseInt(theidis)+1;};
			$('#product-facts').fadeOut(300);
			$('#preload').empty();
			$('#preload').prepend('<img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[theidisnext]+'" \/><img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[theidisprev]+'" \/>');
				$('#product').hide("slide", { direction: "right" }, 500 , function() {
					$('#product').empty();
					$('#product').prepend('<img border="0" src="'+theprodurl+'\/products\/'+toLoadIm+'" \/>');
					$('#product').show("slide", { direction: "left"}, 500);
				});
				$('#description').fadeOut(400,function() {
					$('#description').empty();
					$('#descr').empty();
					$('#descr').prepend('<img border="0" src="'+theprodurl+'\/products\/'+toLoadNu+'" \/>');
					$('#description').prepend('<h2 class="product-title">'+toLoadTt+'</h2>'+toLoadTx);
					$('#description').show("slide", { direction: "up"}, 500);
				});
				$(this).attr('rel', theidisnext);
				$('#previous').attr('rel', theidisprev);
			if(toLoadNu==''){
				$('#nutrition').css({'visibility' : 'hidden'});
			}else{
				$('#nutrition').css({'visibility' : 'visible'});
			}
			return false;
		});
		
		$('#previous').click(function(){
			var theidis = $(this).attr('rel');
			var toLoadID = myprodsID[theidis];
			var toLoadIm = myprodsImage[theidis];
			var toLoadTx = myprodsText[theidis];
			var toLoadTt = myprodsTitle[theidis];
			var toLoadTi = myprodsTitleImg[theidis];
			var toLoadNu = myprodsNutriImg[theidis];
			if(theidis==0){theidisprev=myprodsID.length-1;}else{theidisprev=parseInt(theidis)-1;};
			if(theidis==myprodsID.length-1){theidisnext=0;}else{theidisnext=parseInt(theidis)+1;};
			$('#product-facts').fadeOut(300);
			$('#preload').empty();
			$('#preload').prepend('<img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[theidisnext]+'" \/><img width="1" height="1" src="'+theprodurl+'\/products\/'+myprodsImage[theidisprev]+'" \/>');
			$('#product').hide("slide", { direction: "left" }, 500 , function() {
				$('#product').empty();
				$('#product').prepend('<img border="0" src="'+theprodurl+'\/products\/'+toLoadIm+'" \/>');
				$('#product').show("slide", { direction: "right"}, 500);
			});
			$('#description').fadeOut(400,function() {
				$('#description').empty();
				$('#descr').empty();
				$('#descr').prepend('<img border="0" src="'+theprodurl+'\/products\/'+toLoadNu+'" \/>');
				$('#description').prepend('<h2 class="product-title">'+toLoadTt+'</h2>'+toLoadTx);
				$('#description').show("slide", { direction: "up"}, 500);
			});
			$(this).attr('rel', theidisprev);
			$('#next').attr('rel', theidisnext);
			if(toLoadNu==''){
				$('#nutrition').css({'visibility' : 'hidden'});
			}else{
				$('#nutrition').css({'visibility' : 'visible'});
			}
	
			return false;	
		});
		$('#nutrition').click(function(){
				$('#product-facts').css({'left' : '50%'});
				$('#product-facts').fadeIn(300);
			return false;	
		});
		$('#nutritionoff').click(function(){
				//$('#product-facts').css({'visibility' : 'hidden'});
				$('#product-facts').fadeOut(300);
			return false;	
		});
	}
	return false;
});