﻿jQuery(document).ready(function() {
	jQuery('.biggerImage').click(function(){
		
		var theid = $(this).attr('id');
		$('#dynamic').load("./content/" + theid + ".html", function() {
		});
	
		currentSubSelection = theid;
				
	});
	jQuery('.biggerVideo').click(function(){
		
		var theid = $(this).attr('id');
		$('#dynamic').load("./content/" + theid + ".html", function() {
		});
	
		currentSubSelection = theid;
				
	});
	
});


