$(document).ready(function(){
	
	//dropdown
	$("#navi").droppy({speed:200});
						   
	//uniform
	$('input, textarea, select, button').uniform();
	
	//navi
	$('#navi > li:eq(0)').addClass('first');
	$('#navi > li:eq(6)').addClass('last');
	
	//hero
	if($('ul#hero')){
		$('ul#hero').cycle({
			fx:'scrollHorz',
			speed:1000,
			timeout:5000,
			next:'#scrollR',
			prev:'#scrollL'
		});
	}
});
