$(document).ready(function(){
var label=$('label[@for=main_search_string]').hide().text();
$('input#main_search_string').css({'color':'#999'}).val(label).focus(function(){
$(this).css('color','#000');
if ($(this).val()==label){
$(this).val('');
}
}).blur(function(){
if ($(this).val()==''){
$(this).val(label).css('color','#999');
}
});
$(".nav").superfish({
pathClass:'current',
animation:{opacity:'show'},
delay:500
});
});
