$(document).ready(function() {
	
	// fix transparent PNGs with supersleight
	// http://allinthehead.com/retro/338/supersleight-jquery-plugin
	$('.lquo')
		.add('.rquo')
		.add('.pep')
		.add('#searchform')
			.supersleight();

	// when the search bar gets focus, show the advanced
	// search options if they are there
	$('#s').focus(function(){
		$('#search-options').fadeIn();
	}).click(function(){
		$('#search-options').fadeIn();
	});
	
	$('#search-options').mouseleave(function(){
		$(this).fadeOut();
	});
});
