$(document).ready(function(){
	
	var pic_height = $('ol#photoAlbum li').height();
	
	$('.recent_album_deets').each(function(){
		var tab_height = $(this).height();
		var displace = pic_height - tab_height - 7;
		//alert(pic_height+tab_height+displace);
		$(this).css("top",displace);
	})
	
		
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Full Caption Sliding (Hidden to Visible)
	$('ol#photoAlbum li').hover(function(){
		$(".recent_album_deets", this).stop().animate({top:'200px'},{queue:false,duration:160});
	}, function() {
		var tab_height = $(this).find(".recent_album_deets").height();
		var pic_height = $('ol#photoAlbum li').height();		
		var displace = (pic_height - tab_height - 7) + "px";
		$(".recent_album_deets", this).stop().animate({top: displace},{queue:false,duration:160});
	});

	var input_value = $(".focus_clear").val();

	$(".focus_clear").focus(function() {
		if ($(this).val() == input_value) {
			$(this).val('');
		}
	});
	
});
