$(document).ready(function(){
	pel = 0;
	$(".pelatologio").live('click',function(){
		if(pel == 0){
			pel = 1;
			$(".pelates").show();
		}else{
			pel = 0;
			$(".pelates").hide();
		}
		return false;
	});
	
	$('.colorbox').colorbox({rel:'colorbox', maxWidth: '90%', maxHeight: '90%'});
});

