/* 

Surve Bootup Script
v. 1.0

last mod: 11-24-08
by: Mark


*/


/*################################################################################## Surve Base */


$(document).ready(function() {

	if ($('ul#main_graphic').length > 0) {
		$("ul#main_graphic").addClass("canvas");
		$("ul#main_graphic").innerfade({ speed: 'slow', timeout: 10000, type: 'sequence', containerheight: '175px' });
	}
	
	if ($('div.phrase-random').length > 0) {
		$('.phrase').css({
			position: 'relative',
			right: '800px',
			opacity: 0
		}).animate({
			right: 0,
			opacity: 1
		}, 2000);
	}
	
});