/**
 * stuff to do to images and menus using Jquery
 * @author: Gabriel | http://id-web.ca
 * @uses: jquery.prettyPhoto.js
 **/
 $(document).ready(function(){
	// init prettyPhoto
	$(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto({
			slideshow:7000,
			default_width:800,
			overlay_gallery:false,
			theme:'dark_square',
			autoplay_slideshow:true
		});
	})
 });
