$(document).ready(function(){
	$('#twitter-feed').getTwitter({
		userName: 'innateforte',
		numTweets: 2,
		loaderText: 'Loading tweet',
		slideIn: true,
		slideDuration: 750,
		showHeading: true,
		headingText: '<span>Twitter Live</span>',
		showProfileLink: false,
		showTimestamp: true
	});
	
	/*clear class*/
	var text = "enter your email address";

	$("#email").focus(function() {
		if($(this).attr("value") == text ) $(this).attr("value", "");
	});
	$("#email").blur(function() {
		if($(this).attr("value") == "" ) $(this).attr("value", text);
	});
});
