$(function(){	
	$.easy.navigation();
	$.easy.tooltip();
	$.easy.popup();
	$.easy.rotate();
	$.easy.cycle();
	$.easy.forms();
	$.easy.showhide();
	$.easy.jump();
	$.easy.tabs();
	$('#slider').easySlider({auto:true,continuous:true,pause:10000});
	$('.gallery li:nth-child(5n+1)').addClass('first');
	$('#nav>li').each(function(){
		var maxw = 936;
		var ulw = 250;
		var l = $(this).position().left;
		if( (l+ulw) > maxw){
			$('ul',this).css('left', (maxw - (l+ulw)) );
		};
	});
});
