$(document).ready(function(){
	initTargetBlanks();
	
	showMoreInfo();
})

initTargetBlanks = function(){
	$(".target_blank").click(function(){
		window.open($(this).attr("href"));
		return false;
	})
}

showMoreInfo = function(){
	$("#more_info #act").click(function(){
		var deriv = $(this).parents("#more_info").innerHeight() - $(this).innerHeight();
		if ($(this).parents("#more_info").hasClass("up")) {
			$(this).parents("#more_info").animate({
				bottom: "+=" + deriv + "px",
			}, 700, function(){
				$(this).removeClass("up");
			});
		} else {
			$(this).parents("#more_info").animate({
				bottom: "-=" + deriv + "px",
			}, 700, function(){
				$(this).addClass("up");
			});
		}
		return false;
	});
}
