$(window).load(
	function()
	{
		//outline textboxes and clear and value
		$("input,textarea").focus(function(){
				$(this).addClass("focus-outline");
		}).blur(function(){
			$(this).removeClass("focus-outline");
		});
		//Toggle elements
		$("img#sendtofriendToggle").click(function(){$("div.contentToChange").toggle()}).mouseover(function(){this.style.cursor = 'pointer';this.style.cursor = 'hand';});
	}
);