/********************************************************************
    Brief:  
        Jquery utilities
    Dependencies:
        jquery-1.xxx.js     (jQuery library)
    Author:
        xaxa
*********************************************************************/

var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	//Search box
	var hasFocus = false;
	
	$j('#searchform input[id=searchbox]').focus(function() {
		$j(this).val('');
		hasFocus = true;
	});

	$j('#search_icon').click(function(e) {
	  e.cancelBubble = true;
	  e.stopPropagation();
	  e.preventDefault();
	  if(hasFocus) $j('#searchform').submit();
	});
	
});
