/*
+----------------------------------------------------------------------+
| N-SQUARE FRONT OFFICE                                                |
+----------------------------------------------------------------------+
| Copyright (c) 2010 N-SQUARE                                          |
+----------------------------------------------------------------------+
| Ce fichier source est la propriete d'Havas                           |
| Vous ne pouvez pas le reutiliser sans autorisation explicite         |
| d'Havas                                                              |
|                                                                      |
| This source file is subject of the Intellectual property of          |
| Streampower. You cannot use this file without explicit autorization  |
| of Streampower                                                       |
|                                                       		       |
+----------------------------------------------------------------------+
| Authors: <infos@n-square.net>                                        |
+----------------------------------------------------------------------+

$Id$
@brief   Gestion du slideshow de la page d'accueil des mini-sites
@author  LDI
@version 1.0
@date    04/2010
*/

$(window).load(
	function() {
		$('#slideshow-images').cycle({
			delay:  -9000,
			pause:  1,
			prev:    '#prev',
			next:    '#next',
			pager:   '#nav',
			pagerAnchorBuilder: function(idx, slide) { 
	        return '<a href="#"><span>'+(idx+1)+'</span>&nbsp;&nbsp;</a>'; 
			} 			
		});
	}
);		

