/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){
$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){
opts.before.push(function(curr,next,opts){
$.fn.cycle.commonReset(curr,next,opts,false,false);
opts.animIn={width:next.cycleW,height:next.cycleH};});
opts.cssBefore={display: none, width:0,height:0};
opts.animOut={opacity:0};};
$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){
$cont.css("overflow","hidden").width();
opts.before.push(function(curr,next,opts,fwd){
$.fn.cycle.commonReset(curr,next,opts);
opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);
opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});
opts.cssFirst={left:50};
opts.cssBefore={top:30};
opts.animIn={left:50};
opts.animOut={top:30};};
})(jQuery);
