// JavaScript Document

$(document).ready(function() {
	$('#navigation>ul>li').removeClass('expanded').addClass('collapsed');
	
	$('#navigation>ul>li.collapsed').bind('mouseenter', function() {
		$(this).children('ul').fadeIn(100);
	});
	
	$('#navigation>ul>li.collapsed').bind('mouseleave', function() {
		$(this).children('ul').fadeOut(100);
	});
	
	$('#header-tabs li:not(.active)').bind('mouseenter', function() {
		$(this).animate({height: "28px", fontSize: "14px", paddingTop: "3px"}, 150);
	});
	
	$('#header-tabs li:not(.active)').bind('mouseleave', function() {
		$(this).animate({height: "26px", fontSize: "11px", paddingTop: "0px"}, 150);
	});
	
	$('#webform-client-form-17>div>div').addClass('clearfix');
	
	//$('.node-type-website #content-header h1').text('Portfolio');
	
});
