jQuery(function($){
	var searchboxFieldValue = '';
    $('#searchbox-field').focus(function(e){
        var elt = $(this);
        searchboxFieldValue = elt.val();
        elt.val('');
    }).blur(function(e){
        var elt = $(this);
        if(elt.val() == '')
			elt.val(searchboxFieldValue);
    });
	$('a[href]').each(function(){
		var href = $(this).attr('href');
		if(!href.match(/^javascript:/) && href.match(/^[a-z0-9]+:/))
			$(this).attr('target','_blank');
		else if(href.match(/^#/)){
		    $(this).click(function(e){
		        e.preventDefault();
		        window.location.hash=href;
		    });
		}		    
	});
});

