jQuery(document).ready(function() { 

	$('#stories .story').append('<p class="close"><a href="#" onclick="javascript:resetShow(); return(false);">[x] back</a></p>');
	$('#lets-work-together a:not(.close)').bind('click', function() {showpic(this.className);return(false); });
	//$('#lets-work-together .text p:not(.attribution)').prepend('<img src="chrome/v1/images/home-stories/quote1.gif" width="20"  height="17" alt="&ldquo;" style="margin-right:1ex;" />');
	//$('#lets-work-together .text p:not(.attribution)').append('<img src="chrome/v1/images/home-stories/quote2.gif" width="20"  height="17" alt="&rdquo;" style="margin-left:1ex; vertical-align: bottom;" />');
	$('#lets-work-together .text p:not(.attribution)').prepend('<span class="fancyquotesl">&ldquo;</span>');
	$('#lets-work-together .text p:not(.attribution)').append('<span class="fancyquotesr">&rdquo;</span>');
	//$('#lets-work-together .text p:not(.attribution)').append('<img src="chrome/v1/images/home-stories/quote2.gif" width="20"  height="17" alt="&ldquo;" class="rdquo"/>');
	$('#lets-work-together .text').wrap('<div class="text-wrap">');
															

}); 

function showpic(name) {
	$("#lets-work-together #" + name).fadeIn("slow");
	var textTimer = setTimeout(function() {$("#lets-work-together #" + name + " .text-wrap").slideDown("slow"); }, 500);
	var closeTimer = setTimeout(function() {$("#lets-work-together #" + name + " .close").slideDown("slow"); }, 500);
}

function resetShow() {
	//clearTimeout(textTimer);
	$("#lets-work-together .story").fadeOut();
	$("#lets-work-together .text-wrap").slideUp();
	$("#lets-work-together .close").slideUp();
}



