// JavaScript Document
if ( ( typeof( sfHover ) ).toLowerCase() != 'undefined' ) { 
	event_attach( 'onload' , function () { 
		sfHover( 'rMenu' )
	} ); 
}
$(document).ready(function(){
						   
$(".prices tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".prices tr:even").addClass("alt");

// This code puts hover effect on list of product page. Could be confusing as it does not take you to the page.
// $(".tabTable tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
// $(".tabTable tr:even").addClass("alt");

});	

function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}