$(document).ready(function() {
	// Cycle for home quotes
	$('.home-quotes').cycle({
		fx: 'fade',
		speed:   800, 
		timeout: 8000
	});
	// prettyPhoto
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'light_square', /* light_rounded / dark_rounded / light_square / dark_square / facebook */																			 
		allowresize: false
	});

	$('.gallery-th').html('<ul id="gnav">');
	$('#gallery').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    pager:  '#gnav', 
     
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
		//	return '<li><a href="#"><img src="' + slide.src + '" width="104" height="74" /></a></li>'; 
        return '<li><a href="#"><img src="' + slide.src + '" width="67" height="60" /></a></li>'; 
    } 
	});
	
	$('ul.drawers').accordion({
    // the drawer handle
    header: 'H2.drawer-handle',
    
    // our selected class
    selectedClass: 'open',
    
    // match the Apple slide out effect
    event: 'mouseover'
  });


	
});
