// JavaScript Document
//prettyphoto
$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto();
});

//galleryview
$(document).ready(function(){
		$('#photos').galleryView({
    panel_width: 900,
    panel_height: 400,
    frame_width: 35,
    frame_height: 35,
    overlay_color: '#222',
    overlay_text_color: 'white',
    caption_text_color: '#222',
    background_color: 'transparent',
	transition_speed: 1000,
	transition_interval: 4000,
    border: 'none',
    nav_theme: 'light',
    easing: 'easeInOutQuad',
    pause_on_hover: true
});
});
