jQuery(function(){


});
window.onload = function(){
		
	
	startCycle()
		
		
}  // end window.onload
function startCycle(){
		try 
					{
						jQuery('#pics')
							.cycle('stop')
							.after('<div id="pager" />').after('<br class="trick" />')
							.cycle({
								fx: 'fadeZoom',
								pager:'#pager',
								speed:300,
								timeout:10000,
								pause:1
								
							});
					}
					catch(er)
					{
						alert('error');
					} // end Try Catch
	} // end function startcycle()