//Drop Menu

$(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');
			
		});
	});

//PNG fix

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

$(document).ready(function() 
	{
			$('#slide3').ulslide({
				statusbar: true,
				width: 890,
				height: 200,
				nextButton: '#slide3_next',
				prevButton: '#slide3_prev',
				effect: {
					type: 'slide', 
					axis: 'x',   
					distance: 40   
				},
				mousewheel: false,
				pager: '#slide3-pager a',
				duration: 320,
				autoslide: 5000
			});
		});



