// JavaScript Document
$(document).ready(function(){
	$("img[src*='_off.']").rollOver();
	$("button").rollOver("img");
	$(".alRo").alphaRo({from:1,to:0.8,fade:false});
	$(".walRo").css({background:"#FFF"}).alphaRo({from:0,to:0.3,fade:false});
	$("a.pn[href^='#']").smScroll();
	$("a[rel='jump']").anotherWin({width:780, name:'contactWindow'});
	$("a[rel='jumpEvent']").anotherWin({width:820, name:'eventWindow'});
	$("#h_global dt a").hover( function() {
		$("#h_global dd").show().css("top", 65).animate({top:60},{duration:"fast"});
	}, function() {
		$("#h_global dd").hide();
	} );
});

