/**
 * @package Havoc_WordPress
 * @subpackage Theme
 * @author Alex Southan
 */
jQuery(document).ready(function($) {
	var dog  = $('#dog');
	var oldClass = dog.attr('class');
	$('#menu a').each(function(i) {
		$(this).hover(
			function() {
				dog.attr('class', 'dog-' + $(this).parent().attr('id'));
			},
			function() {
				dog.attr('class', oldClass);
			}		
		);	
	});
	
	$('#s').focus(function() {
		if (this.value == 'Search')
			this.value = '';			
	}).blur(function() {
		if (this.value == '')
			this.value = 'Search';			
	});
});