$(function(){
	/* Expand posts */
	$(".b_expand").bind("click", function(){
		$(this).parents(".content").children(".fullcontent").toggle();
		if($(this).text()=="[+]"){ $(this).text("[-]"); }else{ $(this).text("[+]"); }

		return false;
	});

	
	/* Share popup */
	$(".b_facebook, .b_twitter").bind("click", function(){
		window.open($(this).attr('href'), 'pop_share', 'scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,width=700,height=400');
		return false;
	});
	
	
	/* Popup */
	$("a.popup, li.popup a").bind("click", function(){
		window.open($(this).attr('href'), 'pop', 'scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,width=600,height=450');
		return false;
	});
	
	
	/*Trigger Gallery*/
	$(".b_trigger_gallery").bind("click", function(){
		$(this).parent(".thumbnail").siblings(".fullcontent").children(".gallery").find("a:first").click();
		return false;
	});

});
