$(document).ready(function() {
	//clear email/search input fields
	$('input#email').bind('focus',function() {
		$(this).val("");
		$(this).unbind('focus');
	});
	$('input#s').bind('focus',function() {
		$(this).val("");
		$(this).unbind('focus');
	});
	//main nav hover fix for IE
	$('li.page_item:not(.current_page_item):not(.page-item-31)').hoverIntent(
		function() {
			$('ul', this).css('left','-1px');
			//$(this).css('background-color','#ffffff');
			//$('a', this).css('color','#869cb3');
		},
		function() {
			$('ul', this).css('left','-9999px');
			//$(this).css('background-color','#647588');
		}
	);
	$('li.current_page_item').hoverIntent(
		function() {
			$('ul', this).css('left','-1px');
		},
		function() {
			$('ul', this).css('left','-9999px');
		}
	);
	$('li.page-item-31').hover(
		function() {
			//$(this).css('background-color','#ffffff');
			//$('a', this).css('color','#869cb3');
		},
		function() {
			//$(this).css('background-color','#3d4854');
			//$('a', this).css('color','#fff');
		}
	);
	
	$('.image_wrap_outside').cycle({
		cleartypeNoBg: true,
		fx: 'fade',
		timeout: 5000
	});
});
