		$j(document).ready(function() {
			$j('#login-header-bg input[type="text"], input[type="password"], #search input[type="text"], #shoutbox-content input[type="text"], #megavideo-link input[type="text"], #dotpay-sms input[type="text"]').focus(function() {
					if (this.value == this.defaultValue){ 
					this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
    		$j('#login-header-bg input[type="text"], input[type="password"], #search input[type="text"], #shoutbox-content input[type="text"], #megavideo-link input[type="text"], #dotpay-sms input[type="text"]').blur(function() {
    		    if ($j.trim(this.value) == ''){
			    	this.value = (this.defaultValue ? this.defaultValue : '');
				}
    		});
		});
		
		$j(document).ready(function(){
			$j('A[rel="_blank"]').each(function(){
					$j(this).attr('target', '_blank');
			});
		});
		$j(function() {
				$j('#facebook_box_left').hover(
						function () {
								$j('#facebook_content_left',$j(this)).stop().animate({'marginLeft':'-8px'},'slow');
						},
						function () {
							 $j('#facebook_content_left',$j(this)).stop().animate({'marginLeft':'-272px'},'slow');
						 }
				);
		});
