/*

File: custom.js

For: Landed!
Author: Luke Smith - HisHandiwork.biz
Created: 06/28/11



--- TABLE OF CONTENTS ---


1. JMENU
2. VALUE HIDE


*/



/* 1 * JMENU */
jQuery(document).ready(function() {
    $('#menu ul').jmenu({
	    animation:'slide',
	    duration: 100
    });
});

/* 2 * VALUE HIDE */							
$(document).ready(function(){
	$('.default-value').each(function() {
	    var default_value = this.value;
	    $(this).css('color', '#cccccc');
	    $(this).focus(function() {
	        if(this.value == default_value) {
	            this.value = '';
	            $(this).css('color', '#555555');
	        }
	    });
	    $(this).blur(function() {
	        if(this.value == '') {
	            this.value = default_value;
	            $(this).css('color', '#cccccc');
	        }
	    });
	});
});

