// JavaScript Document
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		hideflash:true,
		theme:'facebook'
	});
	
	$('#subscribe_tab').hover(function(){
		$(this).animate({left:'+=30'},300);
	}, function(){
		$(this).animate({left:'-=30'},300);
	});
});