//Methods Used in the site	
$(document).ready(function(){
	//Animation of left sidebar navigation
	$.fn.navBarFade = function(){
		
		$(this).hover(
			function(){
				if($(this).attr('class') != 'current-page'){
					//OVER
					$(this).prepend('<img src="images/link_bg_over.png" />');
					$(this).find('img').fadeIn(250);
				}
			},
			function(){
				//OUT
				$(this).find('img').remove();
			}
		);
	};
	
	//Custom Clear Input Value Method
	$.fn.search = function() {
		return this.focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	};
});

