$(function() {
			var windowHeight = $(document).height();
			$('div#bg').css('opacity', '0');
			$('div#bg').css('height', windowHeight);
			$('div#content').css('opacity', '0')	
			
			$('ul#articleDownloads li form').hide();   
				
			$('.downloadLink a').toggle(function(){
			$(this).parent().find('form').animate({height: "show"}, 700); return false;}, function (){$(this).parent().find('form').animate({height: "hide"},700); return false;
			});
			
			
			
			$('div.Videos a').click(function(){
				$('div#bg').css("display", "block");
				$('div#bg').animate({"opacity": 0.8}, 500);
				$('div#content').css("display", "block");
				$('div#content').animate({"opacity": 1}, 500);
				
				var videoID = $(this).attr('id');
				
				
				
				if(videoID == "carPaint"){
				
				$('div#content').prepend('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320"><param name="src" value="/videoFiles/carPainting.mov"><param name="autoplay" value="true"><param name="type" value="video/quicktime" height="256" width="320"><param name="wmode" value="transparent"/><embed src="/videoFiles/carPainting.mov" height="256" width="320" autoplay="true" type="video/quicktime" wmode="transparent" pluginspage="http://www.apple.com/quicktime/download/"></object>');
				
				} else if(videoID == "semiConductor"){
				
				$('div#content').prepend('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320"><param name="src" value="/videoFiles/semiConductor.mov"><param name="autoplay" value="true"><param name="wmode" value="transparent"/><param name="type" value="video/quicktime" height="256" width="320"><embed src="/videoFiles/semiConductor.mov" height="256" width="320" autoplay="true" type="video/quicktime" wmode="transparent" pluginspage="http://www.apple.com/quicktime/download/"></object>');
				
				} else if(videoID == "diamondTurning"){
				
				$('div#content').prepend('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320"><param name="src" value="/videoFiles/diamondTurning.mov"><param name="wmode" value="transparent"/><param name="autoplay" value="true" ><param name="type" value="video/quicktime" height="256" width="320"><embed src="/videoFiles/diamondTurning.mov" height="359" width="478" autoplay="true" type="video/quicktime" wmode="transparent" pluginspage="http://www.apple.com/quicktime/download/"></object>');
				
				}
				
			});
			
			$('div#bg').click(function(){
				$('div#bg').css("display", "none");
				$('div#bg').animate({"opacity": 0}, 500);
				$('div#content').css("display", "none");
				$('div#content').animate({"opacity": 0}, 500);
				$('div#content object').remove();
			});
			
			$('a#close').click(function(){
				$('div#bg').css("display", "none");
				$('div#bg').animate({"opacity": 0}, 800);
				$('div#content').css("display", "none");
				$('div#content').animate({"opacity": 0}, 500);
				$('div#content object').remove();
			});
			
			
			
			
			
 });
