/*----------------------------------------------*/
/*	Load javascripts
/*---------------------------------------------*/
jQuery(document).ready(function() {
/*----------------------------------------------*/
/*	Customize Superfish Menu
/*---------------------------------------------*/	
	jQuery('#top-nav ul').superfish({
		delay: 200,
		animation: {opacity:'show', height:'show'},
		speed: 'fast',
		autoArrows: false,
		dropShadows: false
	}); 
/*----------------------------------------------*/
/*	Expandable search box
/*---------------------------------------------*/

$('#s').focus(function() {
		$(this).animate({width: "175"}, 300 );	
		$(this).val('')
});

$('#s').blur(function() {
		$(this).animate({width: "110"}, 300 );
		$(this).val('search here');
});

});
