/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {

    /* This is basic - uses default settings */
	
    $("a#single_image").fancybox();
	
    /* Using custom settings */
	
    $("a#inline").fancybox();

    /* Apply fancybox to multiple items */
	
    $("a.group").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'speedIn'		:	600, 
        'speedOut'		:	200, 
        'overlayShow'	:	false
    });
	
});


