$(document).ready(function() {
	$('#slider').anythingSlider({
		width: 467,      // Override the default CSS width
		height: 344, 
		buildNavigation: false,     
		buildArrows: false,
		delay: 4000,
		enablePlay:true,
		autoPlay: true
		});

	$('#portfolio_slider').anythingSlider({
		width: 650,      // Override the default CSS width
		height: 350, 
		buildNavigation: false,     
		buildArrows: false,
		delay: 4000
		});


	$('.portfolio_list li').each(function() {
		 $(this).hover(
		 function() {
		 $(this).find('img').stop().animate({ opacity: 0.5 }, 200);
		 },
		 function() {
		 $(this).find('img').stop().animate({ opacity: 1.0 }, 500);
		 })
	 });
});
