//	Jquery action
jQuery.noConflict();  
jQuery(document).ready(function($){
	//hiding nav hover states for images, on hover they fade in
	$('ul#nav li a').hide();
	$('ul#nav li').hover(
		function () {
			$(this).find('a').fadeIn('fast');
		}, 
		function () {
			$(this).find('a').fadeOut('fast');
		}
	);
	
	//for input fields where there is a default value, switch for onFocus
	$("div#stay_connected input.email").focus(function () {
         if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
    });
});
