/* Author: Creative Culture Media
*/
$(function(){
	$(".colorbox").colorbox();
	$(".colorbox_edit").colorbox({onClosed: function(){location.reload();}});	   	 
	$("#photoRight, #photoLeft").fadeIn(2000).cycle();
		  
		  
});


function slideSwitch() {
    var $active = $('#photoLeft li.active, #photoRight li.active');
    if ( $active.length == 0 ) $active = $('#photoRight li:last, #photoLeft li:last');
    var $next =  $active.next().length ? $active.next()
        : $('#photoLeft li:first, #photoRight li:first');

    $active.addClass('last-active');
    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

function reloadPage(){
	//alert('reloading page: ' + location);
	location.reload();
}
