/*
 * Copyright (c) 2008 Matt Oswalt (mtopro.com)
 * for PictureBreak.com
 */

$.fn.cycle.defaults.speed   = 2000;
$.fn.cycle.defaults.timeout = 6400;

//slideshow
$(function() {
$('#ss1').cycle({ 
    fx:    'fade',
    next:   '#next2', 
    prev:   '#prev2',
    speed:  1500,
    speedIn: 75,
    speedOut: 300,
    pause:	1,
    sync:	1,
////Center Image Portrait & Lndscpe
    before: function() {
        $(this).css({left: '50%', marginLeft: -$(this).width()/2});
/*        $(this).css({top: '50%', marginTop: -$(this).height()/2});  */
    }
 });
});

$(function() {
$('#ss2').cycle({ 
    fx:    'fade',
    next:   '#next2', 
    prev:   '#prev2',
    speed:  1500,
    speedIn: 75,
    speedOut: 300,
    pause:	1,
    sync:	1,
////Center Image Portrait & Lndscpe
    before: function() {
        $(this).css({left: '50%', marginLeft: -$(this).width()/2});
/*        $(this).css({top: '50%', marginTop: -$(this).height()/2});  */
    }
 });
});

$(function() {
$('#ss3').cycle({ 
    fx:    'fade',
    next:   '#next2', 
    prev:   '#prev2',
    speed:  1500,
    speedIn: 75,
    speedOut: 300,
    pause:	1,
    sync:	1,
////Center Image Portrait & Lndscpe
    before: function() {
        $(this).css({left: '50%', marginLeft: -$(this).width()/2});
/*        $(this).css({top: '50%', marginTop: -$(this).height()/2});  */
    }
 });
});





