$(document).ready(function(){

	$("#your_name").blur(function(){
		if ($(this).val() == '') {
			$(this).css("background", "#fff url('img/name_background.jpg') no-repeat");
		}
	}).focus(function(){
		$(this).css("background", "#fff");
	}).blur();

	$("#your_email").blur(function(){
		if ($(this).val() == '') {
			$(this).css("background", "#fff url('img/email_background.jpg') no-repeat");
		}
	}).focus(function(){
		$(this).css("background", "#fff");
	}).blur();
	
	$("#your_story").blur(function(){
		if ($(this).val() == '') {
			$(this).css("background", "#fff url('img/story_background.jpg') no-repeat");
		}
	}).focus(function(){
		$(this).css("background", "#fff");
	}).blur();
	
	$('#arrow').click(function() {
		$("#programs").toggle();
		$("#arrow").toggleClass("arrow_up").toggleClass("arrow_down");
	});
	
	$('#showstoryform').click(function() {
		$("#share_form").toggle();
		$("#showstoryform").toggle();
		$("#hidestoryform").toggle();
	});

	$('#hidestoryform').click(function() {
		$("#share_form").toggle();
		$("#showstoryform").toggle();
		$("#hidestoryform").toggle();
	});

});

