jQuery.fn.delay = function(time,func){
	this.each(function(){
		setTimeout(func,time);
	});
	
	return this;
};


$(document).ready(function() {

	$("a.bannershare").click(function() {
		$("div#shareme").fadeIn("slow");
		$("a.bannershare").fadeOut("slow");
		$("a.topbanner").fadeOut("slow");
	});
	
	$("a.closeme").click(function() {
		$("div#shareme").fadeOut("slow");
		$("a.bannershare").fadeIn("slow");
		$("a.topbanner").fadeIn("slow");
	});

	$("a.featbannershare").click(function() {
		$("div#featshare").fadeIn("slow");
	});
	
	$("a.closefeat").click(function() {
		$("div#featshare").hide("slow");
	});
	
	$("a#showsprout").click(function() {
		$("div#sprout").show();
		$("div#amazonwdgt").fadeOut("slow");
	});
	
	$("a#hidesprout").click(function() {
		$("div#sprout").hide();
		$("div#amazonwdgt").fadeIn("slow");
	});
	
	$("input.signupsie").click(function() {
		$(this).fadeOut("slow");
	});
	
	$("a.showform").click(function() {
		$("#signupper").fadeIn("slow");
	});
	
	$("a.clicker").click(function() {
		$("#videofeature").slideUp("slow");
	});

	$("a.clicker").click(function() {
		$("#videofeature").slideUp("slow");
	});	

	$(this).delay(800,function(){
		$("#videofeature").fadeIn("slow");
	});

	$("a.showjoin").click(function() {
		$("#bannerbar").addClass("open");
		$("a.showjoin").fadeOut("slow");
		$("#signuptop").fadeIn("slow");
	});

	$("a.textjoin").click(function() {
		$("#bannerbar").addClass("open");
		$("a.showjoin").fadeOut("slow");
		$("#signuptop").fadeIn("slow");
	});
	
	$("#signuptop a.close").click(function() {
		$("#bannerbar").removeClass("open");
		$("#signuptop").fadeOut("slow");
		$("a.showjoin").fadeIn("slow");
	});
	
});

	function clicker()
	{
		// nope!
	}
