$(document).ready(function(){
	
	// Hide all tabbed area's, bar the first one.	
	$(".priceswrap").hide();
	$(".specwrap").hide();
	$(".mapwrap").hide();
	$(".emailwrap").hide();
	
	// If one of the tabs is hovered...
	$("#wrap #body .homes #tabbedarea a[class!='lb']")
	.hover(
		function(){	$(this).css({backgroundImage:"url(img/tab_up.jpg)"});},
		function(){	$(this).removeAttr("style");})
	.click( 
		function(){	
			$("#wrap #body .homes #tabbedarea a[class!='lb']").each(
				function(){	$(this).attr("class", "tab"); }
			)
			
			$(this).attr("class", "currenttab");
			
			var i = $("#tabbedarea a").index(this);
			$("#wrap #body .homes #tabbedarea div").hide();
			$("#wrap #body .homes #tabbedarea div:eq("+i+")").show();
	})
	
})
