$(function() {

	/* Form Elements - Search */
	$("#search_bar input[type=text]").focus(
		function() {			
			$(this).animate({			backgroundColor : '#fffff'		})	
	});
	$("#search_bar input[type=text]").blur(
		function() {			
			$(this).animate({			backgroundColor : '#e3e3e3'		})	
	});
	
	/* Form Elements - text fields, textarea */
	$("input[type=text], textarea").focus(
		function() {			
			$(this).animate({			backgroundColor : '#fffff'		})	
	});
	$("input[type=text], textarea").blur(
		function() {			
			$(this).animate({			backgroundColor : '#eaeaea'		})	
	});
	
	/* News Lists 
	$(".news li").hover(
		function() {			
			$(this).animate({			backgroundColor : '#e6fefe'		})
		},	
	    function() {
	    	$(this).animate({			backgroundColor : '#ffffff'		})
	});
	*/
	/* Properties Listings */
	$(".properties li").hover(
		function() {			
			$(this).stop().animate({	backgroundColor : '#f6f6f6'		})
		},	
	    function() {
	    	$(this).stop().animate({	backgroundColor : '#fff'		})
	});
	
	/* Coloured Buttons on Front Page  */
	$(".blue").hover(
		function() {			
			$(this).stop().animate({	backgroundColor : '#007da9'		})
		},	
	    function() {
	    	$(this).stop().animate({	backgroundColor : '#4aabd8'		})
	});
	$(".green").hover(
		function() {			
			$(this).stop().animate({	backgroundColor : '#2c7229'		})
		},	
	    function() {
	    	$(this).stop().animate({	backgroundColor : '#509f4d'		})
	});
	$(".red").hover(
		function() {			
			$(this).stop().animate({	backgroundColor : '#d80d47'		})
		},	
	    function() {
	    	$(this).stop().animate({	backgroundColor : '#e43e6c'		})
	});











});	