﻿jQuery(document).ready(function(){
	$(".nav").superfish({
			animation : { opacity:"show", height:"show" },
			 speed: 10, 
			 delay: 10
		});

	//freaking hovers
	$('#menuProperties').hover(
		function(){ $('img', this).attr('src','images/oproperties.jpg'); },
		function(){ $('img', this).attr('src','images/properties.jpg'); }
	);

	$('#menuOpenhouse').hover(
		function(){ $('img', this).attr('src','images/oopenhouse.jpg'); },
		function(){ $('img', this).attr('src','images/openhouse.jpg'); }
	);

	$('#menuBuying').hover(
		function(){ $('img', this).attr('src','images/obuying.jpg'); },
		function(){ $('img', this).attr('src','images/buying.jpg'); }
	);
	
	$('#menuSelling').hover(
		function(){ $('img', this).attr('src','images/oselling.jpg'); },
		function(){ $('img', this).attr('src','images/selling.jpg'); }
	);
	
	$('#menuRenting').hover(
		function(){ $('img', this).attr('src','images/orenting.jpg'); },
		function(){ $('img', this).attr('src','images/renting.jpg'); }
	);
	
	$('#menuAbout').hover(
		function(){ $('img', this).attr('src','images/oabout.jpg'); },
		function(){ $('img', this).attr('src','images/about.jpg'); }
	);
	
	$('#menuAgents').hover(
		function(){ $('img', this).attr('src','images/oagents.jpg'); },
		function(){ $('img', this).attr('src','images/agents.jpg'); }
	);
	
	$('#menuManagement').hover(
		function(){ $('img', this).attr('src','images/omanagement.jpg'); },
		function(){ $('img', this).attr('src','images/management.jpg'); }
	);
});

