// JavaScript Document
$( function(){
	
	$('#lnk2Intro').load('/examprep/intro_modal.html').dialog(
		{
			modal: true,
			title: 'Select an Intro show to view',
			autoOpen:false,
			width: 600
		}
	);
	

	$('#introShow').click (function() { 
		//console.log('showing dialog');
		$('#lnk2Intro').dialog('open');
	});


	animateIS();
	
//	function animateIS(){
//		$('#introShow').animate( {	backgroundColor:'#FFFF88'}, 500, function(){
//				$('#introShow').animate( {	backgroundColor:'#FFFFDD'}, 500	, function(){
//					animateIS();
//				});
//		});
//	};
	
	function animateIS(){
		$('#introShow').animate( {	backgroundColor:'#FFFF88'}, 750)
			.animate( {	backgroundColor:'#FFFFDD'}, 750	, function(){
				animateIS();
			});
		
	};

});