$(document).ready(function () {   
	$('#nav ul li').hover(
		function () {
			$('ul', this).slideDown(200,function(){
			});
		},
		function () {
			$('ul', this).slideUp(200,function(){
			});
		}
	);
	$('li.link a').hover(
		function () {
			$(this).animate({ backgroundColor: '#f0f0f0' }, 200 );
		},
		function () {
			$(this).animate({ backgroundColor: '#ffffff' }, 200 );
		}
	);
	
	// Start slider
	$('.slides_wrapper').slider();
});
