// JavaScript Document

jQuery.noConflict(); //to keep jQuery from conflicting with other JS libraries on DNN

jQuery(function($) { /* Makes safe use of the $ variable now that noConflict() has been called */ 
	$(document).ready(function(){ //all jquery code in this function. 																			 
	   
	   
	   $("div.scrollable").scrollable({ 
        vertical:true,  
        size: 4,
		clickable:false,
    	// use circular plugin 
    	});	
	   
	   $("a[rel^='prettyPhoto']").prettyPhoto({
		    animationSpeed: 'fast', /* fast/slow/normal */
			opacity: 0.50, /* Value between 0 and 1 */
			showTitle: true, /* true/false */
			allowresize: true, /* true/false */		  
			default_width: 900,
			default_height: 1146
					  										  
		});
		
		
	}); // End Document Ready																			 
}); //End no conflict wrapper