$(document).ready(function(){//homepage scroller products$('.productscroller').cycle({	fx:     'scrollVert',     prev:   '#next',     next:   '#prev', 	easing: 'easeInOutExpo',    timeout: 3000,	pause:           1     // true to enable "pause on hover"});//homepage scroller products$('#homeright').cycle({		fx: 'fade',		timeout:         5000,		pause:           1     // true to enable "pause on hover"});// find all the reg , tm's etc and wrap in span to make smaller.$("*:contains('&')", '#main').contents().each(            function() {                if( this.nodeType == 3 ) {                    $(this)                        .replaceWith( this                            .nodeValue                            .replace( /&/g, "<span class='amp'>&</span>" ));                }            });$("*:contains('®')", '#main').contents().each(            function() {                if( this.nodeType == 3 ) {                    $(this)                        .replaceWith( this                            .nodeValue                            .replace( /®/g, "<span class='amp'><sup>&reg;</sup></span>" ));                }            });// modal for contact $("a[rel^='prettyPhoto']").prettyPhoto();});
