jQuery.noConflict();
(function($){

$(document).ready(function(){
	
	$('form.searchform input.text').each(function(){
		this._text = this.value;
		$(this).focus(function(){
			if (this.value == this._text)
				this.value = '';
		}).blur(function(){
			if (this.value == '')
				this.value = this._text;
		});
	});


	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('#logo a, #wrap, #footer, #menu2 li a span, #boxes .box');
		}
	}

});

})(jQuery);
