/* SLIDESHOW - using jquery.cycle.all.min.js plugin
---------------------------------------------------------- */
$(document).ready(function() {
    $('#featured').cycle({ 
        fx:      'fade', 
        speed:    2500, 
        timeout:  2000 
    });

	$('#work_slideshow').cycle({ 
			fx:     'scrollHorz', 
			speed:  'fast',
			timeout: 0, 
			next:   '#next', 
			prev:   '#prev' 
		});

	$('#info').cycle({ 
			fx:    'scrollVert', 
			speed:  'fast', 
			timeout: 0, 
			next:   '#next', 
			prev:   '#prev'  
		});
		
});	

	

/* LIGHTBOX - using jquery.lightbox-0.5.min.js plugin
---------------------------------------------------------- */
$(document).ready(function() {
	$(function() {
				$('#work_slideshow .large_preview').lightBox({fixedNavigation:true});
			});		
	});	
