$(document).ready(function() {		
	//bounce in map markers
	//not available to IE as it breaks the PNG fix
	/*@cc_on
   	@if (@_jscript_version == 5.7) return;
   	@end;
	@*/
	
	
	$('#csList li').hide();
	$('#csList li').css('margin-top','-50px');
	$('#csList li').animate({
		style: 'margin-top:-24px;',
		opacity: '100'
		},
		1000,'easeOutBounce'	
	);
});	



