(function($) {
	$(function() {
	
	/*===========================
	*
	* Date Created: 27/12/2010
	* Last Update: 29/01/2011
	* Source: -
	* Description: -
	*
	*===========================*/
	
	// CLEAR INPUT FIELD
	$('.setclear').each(function() {
		var default_value = this.value;
		$(this).focus(function(){
			if(this.value == default_value) {
				this.value = '';
			}
		});

		$(this).blur(function(){
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});
	
	// COMMENT DATE FADE	
	$('.comment-reply').fadeTo("fast", 0);
	$('.comment').hover(function(){
	    $(this).find('.comment-reply').stop().fadeTo("fast", 1);
	},function(){
	    $(this).find('.comment-reply').stop().fadeTo("fast", 0);
	});	
	

	})
})(jQuery)
