/**
 * Javascript - jQuery enabled
 * 
 * @package Universidade-do-Poker
 * @subpackage Media
 */

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

	$(document).ready(function(){

	$("ul li.block").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});

    var windowSizeArray = [ "width=540,height=320,scrollbars=yes" ];
     
    $(document).ready(function(){
        $('.consultaPontos').click(function (event){
            var url = $(this).attr("href");
            var windowName = "popUp";
            var windowSize = windowSizeArray[ 0 ];
            window.open(url, windowName, windowSize);
            event.preventDefault(); 
        });
    });
	
tweetmeme_url = '<?php the_permalink(); ?>';
tweetmeme_service = 'bit.ly';

$(function(){
	contentHeight(); 
	function contentHeight(){	$("#content").css({"min-height":($("#navigation").height())+"px" }) }
 	$(window) .scroll(contentHeight) .resize(contentHeight) });

