// JavaScript Document

			$(document).ready(function() {
				$("#twitter").getTwitter({
					userName: "talentbasket",
					numTweets: 5,
					slideIn: true,
					slideDuration: 750,
					showHeading: true,
					showProfileLink: true,
					showTimestamp: true
				});
				$("a", ".twitted").live("click", function() {
				$(this).attr("target", "_blank");
				});
			});

