// JavaScript Document
$(document).ready(function(){
			$('.settings > a').click(function(){
					alert('These features are comming soon.')									  
			});	
			
			// clicking the search form erases the text in the box
			$('#s').focus(function(){
				if($(this).val()=='Search'){				   
					$(this).val('');
				}
			}).blur(function(){
				if(!$(this).val()){
					$(this).val('Search') 
				}
			});
			
			// prevent searches when the no keyword is entered or keyword = "Search"
			$('#searchform').submit(function(){
					if($(this).val()=='Search' || !$('this').val('')){	
						alert('Please enter some keywords to search on.');
						return false;
					}							 
			});
			
			
						   
	});				 
