var $j = jQuery.noConflict();
jQuery(document).ready(function($j){ 
// ROLLOVER
// enter the div id where it says "#selector"
// decide whether it is a jpg, gif, or png

// IMAGE ROLLOVER
$j("img.ro").hover(
 function()
 {
  this.src = this.src.replace(".gif","-ro.gif");
 },
 function()
 {
  this.src = this.src.replace("-ro.gif",".gif");
 });

// TRANSFORM HR 
//$j("hr").replaceWith("<div id='hr'></div>");
$j("<div id='hr'></div>").replaceAll("hr");



// SCROLL
$j(function(){
	$j('.scroll a').click(function(){
		$j('html, body').animate({scrollTop:$j($j(this).attr("href")).offset().top},1000);
		return false;
	});
});


// MAKE SEARCH FIELD BLANK WHEN CLICK IN
  $j("input[type=text]").focus(function () {
			$j(this).val("")						 
    });


});//end jQuery
