var priceChange = new Array("",
    /* Updated by Kavitha */
    //new Array("&pound;535", "&pound;625", "&pound;795" , "Single", "Single", "Single", "From &pound;185.00", "From &pound;295.00"),
    new Array("&pound;535", "&pound;625", "&pound;695" , "Single", "Single", "Single", "From &pound;185.00", "From &pound;295.00"),
	//new Array("&pound;650", "&pound;765", "&pound;935", "Small Double", "Small Double", "Small Double", "From &pound;195.00", "From &pound;385.00"),
	new Array("&pound;650", "&pound;765", "&pound;850", "Small Double", "Small Double", "Small Double", "From &pound;195.00", "From &pound;385.00"),
	//new Array("&pound;675", "&pound;800", "&pound;975", "Double", "Double", "Double", "From &pound;200.00", "From &pound;395.00"),
	new Array("&pound;675", "&pound;800", "&pound;950", "Double", "Double", "Double", "From &pound;200.00", "From &pound;395.00"),	
	//new Array("&pound;775", "&pound;900", "&pound;1130", "King", "King", "King", "From &pound;235.00", "From &pound;450.00"),
	new Array("&pound;775", "&pound;900", "&pound;1050", "King", "King", "King", "From &pound;235.00", "From &pound;450.00"),	
	//new Array("&pound;875", "&pound;1000", "&pound;1235", "Cont. King", "Cont. King", "Cont. King", "From &pound;235.00", "From &pound;495.00"),
	new Array("&pound;875", "&pound;1000", "&pound;1150", "Cont. King", "Cont. King", "Cont. King", "From &pound;235.00", "From &pound;495.00"),
	//new Array("&pound;925", "&pound;1200", "&pound;1400", "Super King", "Super King", "Super King", "From &pound;285.00", "From &pound;595.00")
	new Array("&pound;925", "&pound;1200", "&pound;1300", "Super King", "Super King", "Super King", "From &pound;285.00", "From &pound;595.00")	
	/* End update */
);
function swapText(aboutId) {
    document.getElementById("price-simplicity").innerHTML = priceChange[aboutId][0];
    document.getElementById("price-simplicity-plus").innerHTML = priceChange[aboutId][1];
	document.getElementById("price-wood").innerHTML = priceChange[aboutId][2];
	document.getElementById("bed-type").innerHTML = priceChange[aboutId][3];
	document.getElementById("bed-type2").innerHTML = priceChange[aboutId][4];
	document.getElementById("bed-type3").innerHTML = priceChange[aboutId][5];
	document.getElementById("headboard").innerHTML = priceChange[aboutId][6];
	document.getElementById("mattress").innerHTML = priceChange[aboutId][7];
    return false;
}

/* Highlight Prices */

$(document).ready(function(){
	$("#price-list > li").click(function() {
		var an = (".highlight span");
		$(an).animate({ 
		color:"#af1e2c"}, 50 );
		$(an).animate({ 
		color:"#bdb6b6"}, 700 );
	});
});
