jQuery(function () {	
	
	jQuery('ul#menu-nav li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(0);			
		}
	);

	jQuery('a[rel="shadowbox"]').attr('rel','shadowbox;width=500;height=500;');
	jQuery(document).ready(function() {

	jQuery.fn.cleardefault = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};
jQuery("input#input_4_1").cleardefault();

});
	
		
});



