var rollover_data = {  'brands-comfortflame' : "brands/images/brands-Comfort-Flame-over.gif" ,  'brands-vantagehearth' : "brands/images/brands-Vantage-Hearth-over.gif",  'brands-fmi' : 'brands/images/brands_FMI-over.gif',  'brands-hearthside': 'brands/images/brands_HearthSide-Designs-o.gif',  'brands-designdynamics' : 'brands/images/brands_Design-Dynamics-over.gif'};$(document).ready(function() {  $("a.rollover").each(function() {    var img = $("img", this);    var id  = $(this).attr("id");        $(this).hover(      function() {                img.data('orig_src', img.attr('src'));                img.attr("src", rollover_data[id]);      },      function() {        img.attr('src', img.data('orig_src'));      }    );      });    $("body.home ul.home-products a").each(function() {    // turn last word light blue if == "Products"    var txt = $(this).html();    var new_txt = txt.replace('Products', '<span class="last-word">Products</span>');    $(this).html(new_txt);  });  });function parts_submit(item){	if(item.value != '' && item.value !="parts_default"){		window.location = item.value;	}}
