// Fix IE6 image flicker problem
	try {
		document.execCommand('BackgroundImageCache', false, true);
	} catch(e) {}

	
	
	$(document).ready(function(){

		$('.HeaderSearchInput').each(function()
			{
			$(this).val('Search');
			$(this).focus(function(){
				if(this.value=='Search') this.value='';
			});
			
			$(this).blur(function(){
				if(!this.value.length) this.value='Search';
			});
		});
	});

	

	// Replace specified HTML headers with javascript-generated images
	//Cufon.replace('.RadMenu_Default .rootGroup, .ContentPanel .blok h2, .HomeBlocks h2');
	
	