function slider(){
	$(window).load(function() {
		$('#featured').orbit({
		     animation: 'fade',                  // fade, horizontal-slide, vertical-slide, horizontal-push
		     animationSpeed: 200,
		     timer: true, 			 // true or false to have the timer
		     advanceSpeed: 4000, 		 // if timer is enabled, time between transitions 
		     pauseOnHover: true, 		 // if you hover pauses the slider
		     captions: false 			 // do you want captions?
		});

     });
}
$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto({
    	show_title: false,
    
    	modal: false
    });
  });
