//Show The Love
$(function() {
	$("span.on_img").mouseover(function ()
	{
	$(this).addClass("over_img");
	});
	
	$("span.on_img").mouseout(function ()
	{
	$(this).removeClass("over_img");
	});
	
	$("span.over_img").mouseover(function ()
	{
	$(this).addClass("on_img");
	});
	
	$("span.over_img").mouseout(function ()
	{
	$(this).removeClass("on_img");
	});
		
	$(".love").click(function()
	{
		var id = $(this).attr("id");
		var dataString = 'id='+ id ;
		var parent = $(this);
		$(this).fadeOut(300);
		$.ajax({
			type: "POST",
			url: "/rate-pic.php",
			data: dataString,
			cache: false,
			success: function(html)
			{
				parent.html(html);
				parent.fadeIn(300);
			}
		});
		return false;
	});
	
	$("a.reply").click(function() {
		var id = $(this).attr("id");
		//$("#parent_id").attr("value", id);
		$("div#comment_reply_box"+id).attr("style", 'display:block');
		$("#name").focus();
	});		
	
});
