/* Clear Search Field on Click */
var $z = jQuery.noConflict();
$z(document).ready(function() {
$z('#hsrch').click(function() {
$z(this).val('');
});
}); 

/* Suggestive Search */
document.onclick=function() { document.getElementById('suggestivesearch').style.display='none'; };

/* Style Switch */
var $z = jQuery.noConflict();
	$z(function() {
	$z.stylesheetInit();
	$z('.styleswitch').bind( 'click', function(e) {	
	$z.stylesheetSwitch(this.getAttribute('rel'));
	return false; } ); } );
	
// Nav Yo'
var $zz = jQuery.noConflict();
$zz(document).ready(function() {
$zz("ul#topnav li").hover(function() { //Hover over event on list item
	$zz(this).css({ 'background' : '#473a29'}); //Add background color + image on hovered list item
	$zz(this).find("span").show(); //Show the subnav
} , function() { //on hover out...
	$zz(this).css({ 'background' : 'none'}); //Ditch the background
	$zz(this).find("span").hide(); //Hide the subnav
});
	
});

