/**
 * Percussion.org
 * Mobile Percussion Seminar
 * Homepage Functions
 * Date: 24 Feb 2009
 * Author: TJ Kelly
 * Info: http://www.tjkwebdesign.com
 */


////////////////////////////////////////]  Homepage Javascript Functions  [////////////////////////////////////////
$(window).load(function(){
	
	/*
	
	// innerfade image rotate
	$("#home_innerfade").addClass("loaded");
	$("ul#home_innerfade.loaded").innerfade({ 
		speed: 'slow',
		timeout: 7000,
		type: 'sequence',
		containerheight: '275px'
	});
	
	// open fadebox
	$.create_fade_box(
		'id', // type - other option is "ajax"
		'dates_09_hide',
		"MPS 2008, August 1-5, 2009", // title to be displayed in fadebox
		//"Thom's new book, now available!", // title to be displayed in fadebox
		'dates09', // id of target element to be displayed in fadebox
		{
			width: 400,
			height: 271,
			wrapping_class: 'wrap_class',
			fade_height: 15,
			fade_width:15,
			fade_click_close: false,
			auto_scroll: false,
			show_title: true,
			corners: true
		});

	// close fadebox
	$(".dates09_body").bind('click', function(){
		$('#dates_09_hide_link').hide_fade();
		return false;
	});

	*/

});