 /**
 * filename: home.js
 * 
 * descriptioin: This file containing functions for home page events and handler
 * date created: 04/22/2010
 * created by: Kumpara63 dev Team
 */

/************************************ start validate.js ***********************************/
$(document).ready(function(){
	
	//Remove values inside text boxes
	$('#searchq').focus(function(){ if ($(this).val() == "Type any keyword...")$(this).val(''); else $(this).select()});
	$('#email').focus(function(){ if ($(this).val() == "Email Address")$(this).val(''); else $(this).select()});
	
	//Page under construction event
	//$('#community').click(pageUnderConstruction);
	
	//Page under construction handler
	function pageUnderConstruction()
	{
		alert('Sorry, page under construction. Please come back soon.');
		return false;
	}
	
	//
	$('#facebook-fan').append('<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US" type="text/javascript"><\/script>');

})



/************************************ end validate.js ***********************************/
