function dynamicload(whichdidiclick) {

$('ul.projectlist').remove();
$('h2.selectedworks').remove();

$('.viewport').append('<div class="projectname"></div>');
$('.viewport').append('<ul class="projectnav"></ul>');
$('div.viewport').append('<div class="showcase"></div>');


   	$.ajax({
   		type: "GET",
   		url: "0.php",
   		dataType: "html",
   		success: function(pulleddata) {
   		
   		$(pulleddata).children('ul').eq(whichdidiclick).appendTo('.showcase');
   		$('.showcase').children('ul').children('p').eq(0).appendTo('.projectname');
   		$('.showcase').children('ul').children('li').each(function(i){
      		$('ul.projectnav').append('<li>'+(i+1)+'</li>');
      		$(this).children('span').prepend('<iframe src="content.php?'+$(this).children('span').text()+'" width="700" height="600" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true" />');
      		$(this).children('span').children('iframe').insertAfter($(this).children('span'));
      		$(this).children('span').remove();
   		}); //each image
   		
   		$('ul.projectnav').animate({'opacity': '1'}, 500);
   		$('div.projectname').animate({'opacity': '1'}, 500);
   		$('div.showcase').animate({'opacity': '1'}, 500);
   		
   		projectnavinteraction();

   		} //success
   	}); //ajax

}; //dynamicload

