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

$.fn.cycle.defaults.speed   = 900;
$.fn.cycle.defaults.timeout = 3200;

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




