| 1 |
/*
|
| 2 |
* Copyright 2007 by David Becerril <dave.bv [at] gmail [dot] com>
|
| 3 |
*
|
| 4 |
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General
|
| 5 |
* Public License as published by the Free Software Foundation; either version 2 of the License, or (at your
|
| 6 |
* option) any later version.
|
| 7 |
*
|
| 8 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
|
| 9 |
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
| 10 |
* for more details.
|
| 11 |
*
|
| 12 |
* You should have received a copy of the GNU General Public License along with this program; if not, write to
|
| 13 |
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
| 14 |
*
|
| 15 |
*/
|
| 16 |
|
| 17 |
$(document).ready(
|
| 18 |
function() {
|
| 19 |
var Imagen = Drupal.settings.slideshowcs.imagesCS ;
|
| 20 |
var Fading = Drupal.settings.slideshowcs.fade;
|
| 21 |
|
| 22 |
$('#slideshowCS').crossSlide({
|
| 23 |
fade: Fading
|
| 24 |
},
|
| 25 |
//imagenes
|
| 26 |
Imagen
|
| 27 |
);
|
| 28 |
});
|