/*
 * 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,
	random:	1,
////Title using alt
    after:	onAfter,
////Center Image Portrait & Lndscpe
    before: function() {
        $(this).css({left: '50%', marginLeft: -$(this).width()/2});
/*        $(this).css({top: '50%', marginTop: -$(this).height()/2});  */
} 
 });
////Title Using alt= 
    function onAfter() {
        $('#title1').html(this.alt);
    }
});




