$(function(){	
	
	$('.blink').
		focus(function() {
		    if(this.title==this.value) {
		        this.value = '';
		    }
		}).
		blur(function(){
		    if(this.value=='') {
		        this.value = this.title;
		    }
		});
		
	$('#navigation ul li.dd').hover(
		function() { $(this).find('.drop-down').fadeIn();
		
			if ( $(this).find('.drop-down').length ) {
				$(this).find('a:eq(0)').addClass('dd-active');
			}
	 	},
		function() { $(this).find('.drop-down').fadeOut(); 
		
			if ( $(this).find('.drop-down').length ) {
				$(this).find('a:eq(0)').removeClass('dd-active');
			}
			
		}
	);
	
	$('.login-box form .submit').hover(
		function() { $(this).addClass('submit-hover'); },
		function() { $(this).removeClass('submit-hover'); }
	);
	
	$('a.register').hover(
		function() { $(this).addClass('register-hover'); },
		function() { $(this).removeClass('register-hover'); }
	);
	
	$('a.learn-more').hover(
		function() { $(this).addClass('learn-more-hover'); },
		function() { $(this).removeClass('learn-more-hover'); }
	);
})