$(document).ready(function() {
    // XXX : why to we call all these expensive functions on each and every page when 
    // only a few are concerned ?
  $("a.fancy-box").fancybox();   
  $("#contact-list").accordion();
  $(document).pngFix();
  $("#slider").easySlider({
		auto: false, 
		continuous: false
	});
	
	/* @tabs homepage */
	
	var $tabTitle = $("#homepage-login-form h3");
	
	//$("#homepage-login-form h3:first-child").addClass("active").next("div").addClass("active");
	
	$tabTitle.click(function(){
    $("#homepage-login-form .tab-content").removeClass("active");
    $tabTitle.removeClass("active");
    $(this).addClass("active").next("div").addClass("active");
	});
	
	/* END tabs homepage */
});

