jQuery(document).ready(function($) {  	
	
	// Search bar text blur/focus
	$('.widget_search #searchform input#s').focus(function() {
		$(this).prev().hide();
	});
	$('.widget_search #searchform input#s').blur(function() {
		if ( $(this).attr('value') == '' ) {
			$(this).prev().show();
		} else {
			$(this).prev().hide();
		}
	});

	// Sidenav Accordion Menu
	$('#sidenav > li > a').click( function(e) {
		if ( $(this).hasClass('active') ) {
			$(this).removeClass('active').next().slideUp('fast');
		} else { 
			$(this).addClass('active').next().slideDown('fast')
		};		
		e.preventDefault();
	})
	
});
