//Execute : ashutosh machhe
$(document).ready(function() {		
	
	//Execute the slideShow
	$('.animwrapper').cycle({ 
	cleartype:  1 // enable cleartype corrections 
    });

});
 $("a.slidecontrol").click(function(e){
		    e.preventDefault();
                    if ($('.footerscroller').is(':hidden')){
                        $('.footerscroller').slideDown('slow');
                    }
                    else{
                        $('.footerscroller').slideUp('slow');
                    }
                });

$(function(){
	$('.news li').each(function (i) {
    i = i+1;
    $(this).prepend('<span class="number"> '+i+'</span>');
   });

});

