$(function() {

var virtualtours = {
	"rentaliciaplaza.com" : "Oojmrr4ssrU",
	"rentaliciavillage.com" : "LZ5ft8K7sjA",
	"rentcalespana.com" : "dG11Lis2f3s",
	"rentcasaciento.com" : "YGmB6iIZSh8",
	"rentcinnamoncreek.com" : "f8lKFDzwgno",
	"rentcinnamonridge.com" : "BAeYgDLXCnU",
	"renthamptonpointe.com" : "ofKKbxnwQCg",
	"rentheritagepoint.com" : "-8YW1oL1C84",
	"rentnogalfeliz.com" : "kfZkx5FI5ZQ",
	"rentpheasantridge.com" : "aOfOd7wDZVU",
	"rentsouthpointe.com" : "kCCKII5LlW0",
	"rentsuttonplace.com" : "mLH_pFIKvf4",
	"rentthecape.com" : "_Y1LVnhJxHo",
	"rentthehomestead.com" : "pOMkMz3bzBI",
	"rentthevillager.com" : "lNH64uISg18",
	"rentvillaviento.com" : "bgEbNBHvYSA",
	"rentwalnuteast.com" : "Jp1L0PXu5Rg",
	"rentwimbledonglen.com" : "8N2Hlp__RvE",
	"rentcasamadrid.com" : "aPRcjvwcevs"
};
var domain = window.location.toString().split('//')[1].split('/')[0].replace('www.','');
var tour = virtualtours[domain];

$('#main_t_container').append('<a href="#" class="virtualtour_link_open"></a><div id="virtualtour_link" style="display:none;"><a href="#" class="close"> CLOSE</a><div id="virtualtour_video"><object width="425" height="300"><param name="movie" value="http://www.youtube.com/v/' + tour + '?hl=en&fs=1&autoplay=1&showsearch=0&showinfo=0&playlist=0&loop=1&border=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + tour + '?hl=en&fs=1&autoplay=1&showsearch=0&showinfo=0&playlist=0&loop=1&border=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="300"></embed></object></div></div>');

$('a.virtualtour_link_open').bind('click', function(){
	$('#virtualtour_link').fadeIn('fast');
	return false;
});

$('#virtualtour_link a.close').bind('click', function(){
	$('#virtualtour_link').fadeOut();
	return false;
});
	
});
