// JavaScript Document

function addLikedSite()
{
	var numSites = $("input[name ^='liked_site']").size() + 1;
	theLink = $('#likedLabel');
	
	var newHTML = '<label>Site URL</label>';
	newHTML += '<input type="text" name="liked_site_' + numSites + '" /><br />';
	newHTML += '<label>What you like</label>';
	newHTML += '<textarea name="liked_site_reason_' + numSites + '"></textarea><br />';
	
	theLink.before(newHTML);
}

$(document).ready
(
 function()
 {
	$('.post p a').each
	(
	 function(i)
	 {
	 	$(this).attr('rel',$(this).parent().parent().attr('id'));
	 }
	 )
	//only fancybox image links
	var test = $(".post p a[href$='.jpg'],.post p a[href$='.png'],.post p a[href$='.gif'],.post p a[href$='.jpeg']");
	test.fancybox();
	var t = 't';
 }
 )
