$(document).ready(function(){
	  	if($('ul#portfolio')){
			$('ul#portfolio').innerfade({
				speed: 1000,
				timeout: 5000,
				type: 'sequence',
				containerheight: '185px'
			});
		}
	  	$('.menu li.main').hover(function() {
			$(this).animate({
				opacity: 100
			}, 0);
		}, function() {
		  if(!$(this).hasClass('active')){
			$(this).animate({
				opacity: 0.95
			}, 0);
		  }
		});

	$('.dropdown').each(function () {
		$(this).parent().hover(function () {
			$(this).css('background' , '#666');
			$('.dropdown', this).slideDown(0);
		}, function () {
			$(this).css('background' , 'none');
			$('.dropdown', this).slideUp(0);
		});
	});

});
