$(document).ready(function () 
	{	
		$('.main li:has(ul) > a').addClass('more');
		$('.main li').hover(function () {
			$(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 0).addClass('active_list');
		}, function () {
			$(this).children('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'},0).removeClass('active_list');
		});
	});

$(document).ready(function() 
	{			
		$("a").pngfix();
	});

$(document).ready(function() 
	{
			$('#slide').ulslide({
				statusbar: true,
				width: 950,
				height: 250,
				nextButton: '#slide_next',
				prevButton: '#slide_prev',
				effect: {
					type: 'fade', 
					axis: 'x',   
					distance: 40   
				},
				mousewheel: false,
				pager: '#slide-pager a',
				duration: 120,
				autoslide: 5000
			});
		});
