// JavaScript Document


function checkUncheckAll(theElement) {
   var theForm = theElement.form, z = 0;
	 for(z=0; z<theForm.length;z++){
      if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
	  theForm[z].checked = theElement.checked;
	  }
     }
    }
    
function addToFavorites() { 
	var urlAddress=window.location.href;
	var pageName=document.title;
	if (window.external)
	 {
	 	window.external.AddFavorite(urlAddress,pageName)
	 } 
	else 
	 { 
	 	alert("Sorry! Your browser doesn't support this feature.");
	 } 
} 
   
   
   var selectedtab=1;
   function tabselect(recId,tabNum)
		{
			var abc=recId+tabNum;
			
			var p=recId+"img1";
			var q=recId+"img2";
			var r=recId+"img3";
			var s=recId+"img4";
			
			
			if(tabNum=='a')
			{
				var x=recId+"b";
				var y=recId+"c";
				var z=recId+"d";
				document.getElementById(abc).style.visibility="visible";
				document.getElementById(x).style.visibility="hidden";
				document.getElementById(y).style.visibility="hidden";
				document.getElementById(z).style.visibility="hidden";
				
				document.getElementById(p).src="http://www.relish2shop.com/images/tab_howdeal_on.gif";
				document.getElementById(q).src="http://www.relish2shop.com/images/tab_des.gif";
				document.getElementById(r).src="http://www.relish2shop.com/images/tab_more.gif";
				document.getElementById(s).src="http://www.relish2shop.com/images/tab_tell.gif";
				selectedtab=1;
			}	
			else if(tabNum=='b')
			{
				var x=recId+"a";
				var y=recId+"c";
				var z=recId+"d";
				document.getElementById(abc).style.visibility="visible";
				document.getElementById(x).style.visibility="hidden";
				document.getElementById(y).style.visibility="hidden";
				document.getElementById(z).style.visibility="hidden";
				
				document.getElementById(p).src="http://www.relish2shop.com/images/tab_howdeal.gif";
				document.getElementById(q).src="http://www.relish2shop.com/images/tab_des_on.gif";
				document.getElementById(r).src="http://www.relish2shop.com/images/tab_more.gif";
				document.getElementById(s).src="http://www.relish2shop.com/images/tab_tell.gif";
				selectedtab=2;
			}	
			else if(tabNum=='c')
			{
				var x=recId+"a";
				var y=recId+"b";
				var z=recId+"d";
				document.getElementById(abc).style.visibility="visible";
				document.getElementById(x).style.visibility="hidden";
				document.getElementById(y).style.visibility="hidden";
				document.getElementById(z).style.visibility="hidden";
				
				document.getElementById(p).src="http://www.relish2shop.com/images/tab_howdeal.gif";
				document.getElementById(q).src="http://www.relish2shop.com/images/tab_des.gif";
				document.getElementById(r).src="http://www.relish2shop.com/images/tab_more_on.gif";
				document.getElementById(s).src="http://www.relish2shop.com/images/tab_tell.gif";
				selectedtab=3;
			}
			if(tabNum=='d')
			{
				var x=recId+"a";
				var y=recId+"c";
				var z=recId+"b";
				document.getElementById(abc).style.visibility="visible";
				document.getElementById(x).style.visibility="hidden";
				document.getElementById(y).style.visibility="hidden";
				document.getElementById(z).style.visibility="hidden";
				
				document.getElementById(p).src="http://www.relish2shop.com/images/tab_howdeal.gif";
				document.getElementById(q).src="http://www.relish2shop.com/images/tab_des.gif";
				document.getElementById(r).src="http://www.relish2shop.com/images/tab_more.gif";
				document.getElementById(s).src="http://www.relish2shop.com/images/tab_tell_on.gif";
				selectedtab=4;
			}	
		}


 function tabMover(recId,tabNum)
		{
			var p=recId+"img1";
			var q=recId+"img2";
			var r=recId+"img3";
			var s=recId+"img4";
			
			if(tabNum=='a')
			{			
				document.getElementById(p).src="http://www.relish2shop.com/images/tab_howdeal_on.gif";
			}	
			else if(tabNum=='b')
			{
				document.getElementById(q).src="http://www.relish2shop.com/images/tab_des_on.gif";
			}	
			else if(tabNum=='c')
			{
				document.getElementById(r).src="http://www.relish2shop.com/images/tab_more_on.gif";
			}
			if(tabNum=='d')
			{
				document.getElementById(s).src="http://www.relish2shop.com/images/tab_tell_on.gif";
			}	
		}
		
		
		function tabMout(recId,tabNum)
		{
			var p=recId+"img1";
			var q=recId+"img2";
			var r=recId+"img3";
			var s=recId+"img4";
			
			if(tabNum=='a')
			{			
				if(selectedtab!=1){
					document.getElementById(p).src="http://www.relish2shop.com/images/tab_howdeal.gif";
				}
			}	
			else if(tabNum=='b')
			{
				if(selectedtab!=2){
					document.getElementById(q).src="http://www.relish2shop.com/images/tab_des.gif";
				}
			}	
			else if(tabNum=='c')
			{
				if(selectedtab!=3){
					document.getElementById(r).src="http://www.relish2shop.com/images/tab_more.gif";
				}
			}
			if(tabNum=='d')
			{
				if(selectedtab!=4){
					document.getElementById(s).src="http://www.relish2shop.com/images/tab_tell.gif";
				}
			}	
		}
		
		function rotatetab(dealid)
		{
			alert(dealid);
			for(var a=0;a<=100;a++)
			{
				tabselect(dealid,'a');
				setTimeout("", 1000);
				tabselect(dealid,'b');
				setTimeout("", 1000);
				tabselect(dealid,'c');
				setTimeout("", 1000);
				tabselect(dealid,'d');			
		 }
		}
		
