
$(document).ready(function() {
  
	$('#portfolioList a').each(function() {		
		var tempDimensions = $(this).attr("href");
		var tempWidth	 = tempDimensions.substring(tempDimensions.indexOf('=')+1,tempDimensions.indexOf('&'));
		var tempHeight	 = tempDimensions.substring(tempDimensions.indexOf('height=')+7,tempDimensions.length);
		
		$(this).attr("href", tempDimensions.substring(0,tempDimensions.indexOf('?width')));
			
		$(this).nyroModal({
			width: tempWidth, 
			height: tempHeight,
			swf: {
				wmode: 'opaque'
			}
	
		});
	});
 });