// JavaScript Document
function featuredpropcont(tabname) {
	for(i=1; i<=2; i++){
		if(i==tabname){
			document.getElementById('featuredproptab'+i).setAttribute((document.all?'className':'class'), "featuredprop_tab_active");
			document.getElementById('featuredprop_cont'+i).style.display="block";
		} else {
			document.getElementById('featuredprop_cont'+i).style.display="none";
			document.getElementById('featuredproptab'+i).setAttribute((document.all?'className':'class'), "featuredprop_tab_normal");
		}
	}	
}

