$.fn.clearField = function(){
	return this.focus(function() {
		if( this.value == this.defaultValue){
			this.value = "";
		}
	}).blur(function(){
		if( !this.value.length){
			this.value = this.defaultValue;
		}
	});
};

$(document).ready(function(){
	$("#siteselectorlist select").bind("change", function(){
		//alert($(this).fieldValue());
		if($(this).fieldValue() != 'Global Site Selector'){
			window.location = $(this).fieldValue();
		}
	});
	
	$("input").clearField();
	
	$(document).pngFix();
	
	$('#home #flash_header').flash({
		src: '/interface/flash/home.swf',
		quality: 'high',
		width: 520,
		height: 281
	});
});
