$(document).ready(function(){
	// Blinking Fields
	$('.blink').
	    focus(function() {
	        if(this.title==this.value) {
	            this.value = '';
	        }
	    }).
	    blur(function(){
	        if(this.value=='') {
	            this.value = this.title;
	        }
	    });
	    
	// Fader
	var fader;
	$('.home-featured-cnt .item').simpleFade({
		init : function () {
			fader = this;
		}
	});
	
	$('.home-featured-cnt .prev').click(function () {
		fader.prev();
		return false;
	});
	
	$('.home-featured-cnt .next').click(function () {
		fader.next();
		return false;
	});
	
	// Menu 
	$('.menu ul ul').hide();
	$('.menu .trigger').click(function(){ 
		$(this).toggleClass('trigger-active');
		$(this).next().slideToggle();
		return false;
	});
	
});
