﻿/* ONLOAD */
$(document).ready(function(){

// GLOBAL READMODE/EDITMODE
// toggle editmode and readmode classes per editing status
	if($('#MSOLayout_InDesignMode').val() == '1') 
		$('html').addClass('editmode');
	else
		$('html').addClass('readmode');

// GLOBAL DEV & TEST
// use dev and test watermarks in the background when not in prod
	if(window.location.href.toLowerCase().indexOf("http://dev") != -1){
		$('html').addClass('dev');
	} else if(window.location.href.toLowerCase().indexOf("http://test") != -1){	
		$('html').addClass('test');
	}

    $("a[rel^='prettyPhoto']").prettyPhoto();

});
