$(document).ready(function() { 

			$.studentsList(
				$("#tabs li a"),
				$("#output li"), {
					start_item	:	0
				}
			);
    $(".sliderImg img").each(
        function(i) {
            $(this).wrap('<span class="styled"></span>');
            $(this).after('<span class="plus2"></span>');
        }
    );
   $("#tabs a img").css({'opacity':'0.6'});


	$('#tabs a').hover(
		function() {
			$(this).find('img').stop().fadeTo(500, 1);
		},
		function() {
			$(this).find('img').stop().fadeTo(500, 0.6); 
		}
	)

		});
