jQuery(document).ready(function($) {
  	$('a[rel*=facebox]').facebox();
	
	
	
	$('a#toggler_log').click(function() {
	  	$('div#expand_log').animate({
			height: "80px"
		})
		.animate({
			height: "70px"
		}, "fast");
	});
	
	$('a#toggler_close').click(function() {
	  	$("div#expand_log").animate({
			height: "0"
		}, "fast");
		
	});
	
	$('div#expand_log').hide();
	
	$("counter").dodosTextCounter(50, {counterDisplayElement: "span",counterDisplayClass: "test3CounterDisplay"});
	
	
  	$(document).ready(function(){
    	$("#sidetab").tabs();
  	});
	
	
	
	//Superfish
	//jQuery('ul.menu').superfish();

});