$(document).ready(function() {
	
	$('.training_content:last').css('border-bottom', '0 none');
	
	$('li.answer').hide();
	
	$('.question a').click(function() {
		$(this).parent().next().toggle('fast');
		return false;
	});
	

	$('.seeMeBig').click(function() {

		//what image was clicked on? use it to create path to big image
		var whoAmI = $(this).attr('src').replace('screencaps-onpage', 'screencaps-big');		
		var bigImg = $('<img />').attr('src', whoAmI);				
		$('#insert').html(bigImg);					
		
//		var dialogWidth = ( $('#insert img').width() + 50 );
//		var dialogHeight = ( $('#insert img').height() + 50 );
				
		$('#insert').dialog({
			modal: true,
			resizable: false,
			dialogClass: 'bigPict',
			width: '800',
			height: '450'
		});
		
	});
	
	$('#insert').click(function() {
		$(this).dialog('destroy');
	});
		
});


