$(document).ready( function() {

	/*===========================
	*
	* Date Created: 31/05/2010
	* Last Update: 31/05/2010
	*	Source: -
	* Description: -
	*
	*===========================*/
		
	//$("p:last-child").addClass('last-child');

	// 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;
			}
		});
	});
	
	$('.ns li.active').prev().css({'border-bottom' : 'none'});
	//alert( $('.ns li.active').prev().html() );

	

	/*===========================
	*
	* Pluginname: -
	* Date Created: 31/05/2010
	* Last Update: 31/05/2010
	*	Source: link to plugin
	* Description: -
	*
	*===========================*/


});
