        // CALLS LIGHTBOX
	$(document).ready(function(){
		//Assign the ColorBox event to elements
		$("a[rel='lightbox']").colorbox();
	
		//Example of preserving a JavaScript event for inline calls.
		$("#click").click(function(){ 
			$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
			return false;
		});
	});


        // CALLS HOMEPAGE ROTATOR
	$(document).ready(function() {
	    $('.home-rotator').after('<div id="home-rotator-nav">').cycle({
			fx: 'fade', // transition style
	                speed: 2000, //transition fx speed
	                timeout: 8000, //time between transitions
			pager: '#home-rotator-nav'
		});
	});

       // JQUERY LABELIFY - ADDS INPUT VALUES TO FIELDS
     $(document).ready(function(){$("input").labelify();});

