// JavaScript Document

function clicker(a) {
		if (a.style.display == '') {
			a.style.display = 'none';
		}
		else {
 			a.style.display = '';
		}
	}
	function CheckBrowser(){
    var cb = "Unknown";
    if(window.ActiveXObject){
        cb = "IE";
    }else if(navigator.userAgent.toLowerCase().indexOf("firefox") != -1){
        cb = "Firefox";
    }else if((typeof document.implementation != "undefined") && (typeof document.implementation.createDocument != "undefined") && (typeof HTMLDocument != "undefined")){
        cb = "Mozilla";
    }else if(navigator.userAgent.toLowerCase().indexOf("opera") != -1){
        cb = "Opera";
    }
    return cb;
  }
  
  function change_menu(mode,o){
    var br = CheckBrowser();    
    if(mode=="over" && br=="Firefox"){
      o.style.MozOpacity = 1.0;
    }
    if(mode=="over" && br=="IE"){
      o.filters.alpha.opacity=100;
    }
    if(mode=="out" && br=="Firefox"){
      o.style.MozOpacity = 0;
    }
    if(mode=="out" && br=="IE"){
       o.filters.alpha.opacity=0;
    }
  }
  
  function change_brand(mode,o){
    var br = CheckBrowser();    
    if(mode=="over" && br=="Firefox"){
      o.style.MozOpacity = 0.3;
    }
    if(mode=="over" && br=="IE"){
      o.filters.alpha.opacity=30;
    }
    if(mode=="out" && br=="Firefox"){
      o.style.MozOpacity = 0;
    }
    if(mode=="out" && br=="IE"){
       o.filters.alpha.opacity=0;
    }
  }
  
  function change_cart(mode,o){
    var br = CheckBrowser();    
    if(mode=="over" && br=="Firefox"){
      o.style.MozOpacity = 0.2;
    }
    if(mode=="over" && br=="IE"){
      o.filters.alpha.opacity=20;
    }
    if(mode=="out" && br=="Firefox"){
      o.style.MozOpacity = 0;
    }
    if(mode=="out" && br=="IE"){
       o.filters.alpha.opacity=0;
    }
  }
  


