
var flash_id=0
function setFlId(el)
{
}
function setSO(id,swfName,w,h,txt)
{
}


var rules={

'.fl_hdr': function(el)
{
},
'div.subtitle': function(el){ },
'.prod .price': function(el){ },
'.also .price': function(el){ },
'#fl_top': function(el)
{
},
'.nav_top img': function(el)
{
 if(!this.src)
  return
 var nm
 el.onmouseover=function(){ nm=this.src.split(".gif");this.src=nm[0]+"_selected.gif" }
 el.onmouseout=function(){ nm=this.src.split("_selected.gif");this.src=nm[0]+".gif" }
},
'.nav_top a.selected img': function(el){ el.onmouseover=null;el.onmouseout=null },
'.prod': function(el)
{
 el.onmouseover=function(){ this.style.borderColor="#487b10" }
 el.onmouseout=function(){ this.style.borderColor="" }
},

'#big_pic img':function(el)
 {
  el.onmouseover=function()
	{ document.getElementById("big_pic").style.backgroundImage="url(imgs/"+this.id+".jpg)" }
 },

'.center_col div.testimonials div': function(el)
 {
  el.onmouseover = function()
	{this.style.border="solid #CCCCCC 1px";this.style.background="#FAFAFA"}
  el.onmouseout = function()
	{this.style.border="dotted #CCCCCC 1px";this.style.background="#FFFFFF"}
 },

'div.news tr': function(el)
 {
  el.onmouseover=function(){ this.parentNode.parentNode.className="hover" }
  el.onmouseout=function(){ this.parentNode.parentNode.className="" }
 }

}
document.Behaviour.register(rules)

