/* =========================================================

// slider

// ========================================================= */
$("a[href^=#]").click(function() {  
	var hash = this.hash;  
	if(!hash || hash == "#")  
		return false;  
	$($.browser.safari ? 'body' : 'html')  
		.animate({scrollTop: $(hash).offset().top}, 900, "swing");  
	return false;  
}); 

/* =========================================================

// rollover

// ========================================================= */
$(document).ready(function(){
	$("img[src*='_on']").addClass("current");
	$("img,input").mouseover(function(){
		if ($(this).attr("src")){
			$(this).attr("src",$(this).attr("src").replace("_off.", "_on."));
			}
		});
		$("img[class!='current'],input").mouseout(function(){
			if ($(this).attr("src")){
			$(this).attr("src",$(this).attr("src").replace("_on.", "_off."));
		}
	});
});

