$(document).ready(function() {
    $('#slideshow').cycle({
			fx:     'scrollLeft',
			speed:  500,
			timeout: 5000,
			pager:  '#pager'
	});
	
	/*$('.dropdown').hover(function(){
		$(this).children('ul').show().css('opacity', 0);
		$(this).children('ul').stop().animate({opacity: 1, marginTop: '7px', 'filter': ''}, 200);													
		},
    function() {
			$(this).children('ul').stop().animate({opacity: 0, marginTop: '0px', 'filter': ''}, 500).hide();	
    }
	);*/
	
	$('.dropdown').hover(function(){
		//$(this).children('ul').show().css('opacity', 0);
		$(this).children('ul').show();													
		},
    function() {
			$(this).children('ul').hide();	
    }
	);
	
});
