// no conflicts with other frameworks
var $j = jQuery.noConflict();

//
// window.onload function to setup various javascripts
//
$j(function() {
	//fix png transparency in IE<6
	//$j('img[@src$=.png]').ifixpng();

				$j('.small_search').click(function() {
            if (this.value == this.defaultValue) {
                this.value = '';
            }
        });
        
        $j('.small_search').blur(function() {
            if (this.value == '') {
                this.value = this.defaultValue;
            }
        });
		
});


