
/* - jquery-siteSpotlight-run.js - */
/*
	jQuery - siteSpotlight Plugin
	@copyright Michael Kafka - http://www.makfak.com
	@version 1.0
	*** Demo *** 
*/
jQuery(document).ready(function() {

	var HTMLbackup = jQuery('#spotlightContainer').html();
	jQuery('#spotlightContainer').data('bkup',HTMLbackup);
	
	jQuery('#SpotlightOptions li a').click(function(){
		window.scrollTo(0,0);
		clearInterval(siteSpotlightAutoPlayInterval);
		jQuery('#spotlightContainer').empty().html(jQuery('#spotlightContainer').data('bkup'));
		var nextFunct = jQuery(this).next().text();
		
		if(this.hash == '#horz'){
			jQuery('#preSpotlight div:even').addClass('horizontal');
		}
		
		eval(nextFunct);
		return false;
	}).filter(':first').click();
	
});

