$(document).ready(function(){
		$.urlParam = function(name, url){
		    var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
		    if (!results) { return 0; }
			    return results[1] || 0;
			}; 
//$("a#flashdemo").colorbox({iframe:true, innerWidth:'927px', innerHeight:'720px',opacity:'0.90'});
$("a[rel='screenshots']").colorbox({opacity:'0.90'}); 
$("#youtube, #flashdemo").colorbox({
				innerWidth:function(){return $.urlParam('width', $(this).attr('href'));},
				innerHeight:function(){return $.urlParam('height', $(this).attr('href'));},
				scrolling:false,
				iframe:true,
				title:true});	
});


