$(function() {
	
	/*===========================
	*
	* Date Created: 04/12/2010
	* Last Update: 06/12/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;
			}
		});
	});
	
	
	$(window).load(function(){
	   var Obj = $('.content-wrap').height();
	   Obj = parseInt(Obj) - 19;
	   $('.dots').css({'height':Obj}); 
	});

	/*===========================
	*
	* Pluginname: -
	* Date Created: 12/10/2010
	* Last Update: 12/10/2010
	* Source: link to plugin
	* Description: -
	*
	*===========================*/

});
