$(document).ready(function () {
	/*if(document.getElementById('flpl')) {
		$f("flpl", "http://cdiabu.andplusdesign.com/fp/flowplayer-3.1.5.swf", {
			key: '#@4b156173281ec985a58',
			clip: {
				url: 'http://cdiabu.andplusdesign.com/videos/open-house.flv',
				autoPlay: false,
				autoBuffering: false 
			},
			plugins:  {
				controls: {			
					backgroundGradient: 'none',
					scrubber:true,
					play:true,
					autoHide: 'always'
				}
			}
		});
	}*/
	var searchval = 'Enter search term...';
	var changeMe = ['#searchbox'];
	$.each(changeMe, function(index, value) { 
		$(value).focus(function(){
			if(this.value == searchval) {
				this.value = '';
			}
		})
		.blur(function(){
			if(this.value == '')
				this.value = 'Enter search term...';							
		})
	});		   
});
