var min=8;
var max=20;

function ifsize(postID){
	var post=document.getElementById('content-'+postID);
	if(post.style.fontSize)
		var s = parseInt(post.style.fontSize.replace("px",""));
	else
		var s = 11;
	
	if(s!=max) s += 1;
	post.style.fontSize = s+"px"
}

function dfsize(postID){
	var post=document.getElementById('content-'+postID);
	if(post.style.fontSize)
		var s = parseInt(post.style.fontSize.replace("px",""));
	else
		var s = 11;
	
	if(s!=min) s -= 1;
	post.style.fontSize = s+"px"
}

jQuery(document).ready(function(){	
	jQuery("#slider").easySlider({
	vertical: true,
	auto: true,
	continuous: true 
	});
	jQuery('#mycarousel').jcarousel();
	
	
	jQuery(".votoblog").click(function(){
		jQuery.post('http://blog.laiveesvida.com/wp-content/themes/talian-green/pcs-clicks.php', {tipo: 2 }, function(data) {
			  
		});
		return true;
	});
	
});

var n=0;
function OcultarBlogs(){
	if(n==0){
		slideup('mydiv3');
		n++;
	}
}
