/*
Author: Addam M. Driver
Date: 10/31/2007
*/

/* BEGIN: [Tab Switch Function] */
function tabSwitch_Trends(me)
{
	
//returning the value void from the function if hover button is clicked
if(me.title=="tabFashionFeatures")//writing the Logic that will enable the Viewed Most Viewed news and disable all panel
{
//making all the tab hover false
 if(document.getElementById('imgFeatures').title=="ImageFeaturesoff")
 {
 document.getElementById('imgFeatures').src="images/fashion-feature-on.gif ";
 document.getElementById('imgSpecial').src="images/fashion-special-off.gif ";

 document.getElementById('imgSpecial').title="imgSpecialoff"

 document.getElementById('imgFeatures').title="ImageFeatureson"
 
 
 document.getElementById('dvFashionFeatures').style.display = "block";
 document.getElementById('dvFashionSpecials').style.display = "none";

 
 
 return false;
 }
}
if(me.title=="tabFashionSpecials")//writing the Logic that will enable the Viewed Most Viewed news and disable all panel
{
//making all the tab hover false
 if(document.getElementById('imgSpecial').title=="imgSpecialoff")
 {
 document.getElementById('imgFeatures').src="images/fashion-feature-off.gif";
 document.getElementById('imgSpecial').src="images/fashion-special-on.gif";
 
 document.getElementById('imgSpecial').title="imgSpecialon"
 
 document.getElementById('imgFeatures').title="ImageFeaturesoff"
 
 document.getElementById('dvFashionFeatures').style.display = "none";
 document.getElementById('dvFashionSpecials').style.display = "block";


 return false;
 }
}

}
/* END: [Tab Switch Function] */



/*
Author: Addam M. Driver
Date: 10/31/2007
*/

/* BEGIN: [Tab Switch Function] */
function tabSwitch_TrendsOthers(me)
{
	
//returning the value void from the function if hover button is clicked
if(me.title=="tabFashionFeatures")//writing the Logic that will enable the Viewed Most Viewed news and disable all panel
{
//making all the tab hover false
 if(document.getElementById('imgFeatures').title=="ImageFeaturesoff")
 {
 document.getElementById('imgFeatures').src="images/Tab/fashion-feature-on.gif ";
 document.getElementById('imgSpecial').src="images/Tab/fashion-special-off.gif ";

 document.getElementById('imgSpecial').title="imgSpecialoff"

 document.getElementById('imgFeatures').title="ImageFeatureson"
 
 
 document.getElementById('dvFashionFeatures').style.display = "block";
 document.getElementById('dvFashionSpecials').style.display = "none";

 
 
 return false;
 }
}
if(me.title=="tabFashionSpecials")//writing the Logic that will enable the Viewed Most Viewed news and disable all panel
{
//making all the tab hover false
 if(document.getElementById('imgSpecial').title=="imgSpecialoff")
 {
 document.getElementById('imgFeatures').src="images/Tab/fashion-feature-off.gif";
 document.getElementById('imgSpecial').src="images/Tab/fashion-special-on.gif";
 
 document.getElementById('imgSpecial').title="imgSpecialon"
 
 document.getElementById('imgFeatures').title="ImageFeaturesoff"
 
 document.getElementById('dvFashionFeatures').style.display = "none";
 document.getElementById('dvFashionSpecials').style.display = "block";


 return false;
 }
}

}
/* END: [Tab Switch Function] */