// JavaScript Document

jQuery(document).ready(function(){
$(".menu ul li").hover(
function(){
	$(this).find("img.rollover").fadeIn(0);
},
function(){
	$(this).find("img.rollover").fadeOut(0);
});
$(".phone, .videotour a, .membership_login a").hover(
function(){
	$(this).find("img.rollover").fadeIn(0);
	$(this).parent().find(".number").fadeIn(0);
},
function(){
	$(this).find("img.rollover").fadeOut(0);
	$(this).parent().find(".number").fadeOut(0);
});
});
