function rollOver(){
	jQuery(".ro").mouseover(
		   function () { jQuery(this).animate({opacity: "1"}, 500); }
		).mouseout(
		   function () { jQuery(this).animate({opacity: "0.6"}, 500); }
		);
}

function initSubscribe(){
	jQuery("#subscribeBoxWrapper").mouseover(
		   function () { jQuery("#subscribeBox").show(); }
		).mouseout(
		   function () { jQuery("#subscribeBox").hide();  }
		);
}
