/*// JavaScript Document
window.addEvent('domready', function(){
									 
		
		$$('#PORTFOLIO_TABLE img.PORT_LOGO').addEvent("click",function () { 
				
				
		var theID=this.id;
		$('fade').setStyle("opacity","0");
		$('fade').setStyle("display","block");
		
		
		var myEffects = new Fx.Styles('fade', {duration: 1000, transition: Fx.Transitions.linear});
		 
		//height from 10 to 100 and width from 900 to 300
		myEffects.start({
			'opacity': '1'

		});

	myEffects.addEvent ("onComplete",function () {
var url=SITE_URL+'/includes/get-portfolio.php';
	var pagesnAjax = new Ajax(url, {evalScripts:true,method: 'get',data:'id='+theID,update: $('light')});
	 pagesnAjax.request();
									 
									 });


																   });




});
*/

function popup (theID){
				
		$('PORTFOLIO_TABLE').setStyle("visibility","hidden");
		var theID=theID;
		$('fade').setStyle("opacity","0");
		$('fade').setStyle("display","block");
		
		
		var myEffects = new Fx.Styles('fade', {duration: 1000, transition: Fx.Transitions.linear});
		 
		//height from 10 to 100 and width from 900 to 300
		myEffects.start({
			'opacity': '1'

		});

	myEffects.addEvent ("onComplete",function () {
var url=SITE_URL+'/includes/get-portfolio.php';
	var pagesnAjax = new Ajax(url, {evalScripts:true,method: 'get',data:'id='+theID,update: $('light')});
	 pagesnAjax.request();
									 
					
									 });

}
