/*http://colorpowered.com/colorbox/*/
function openLightBox(url, w, h)
{
	var obj = {
			href:url,
			/*width:"90%", 
			height:"90%",
			iframe:true,*/
			opacity:.8,
			scalePhotos:true,
			speed:200,
			transition: "elastic",
			maxWidth:"90%",
			maxHeight:"90%"
		}
		$.colorbox(obj);
}

$(window).resize(function()
{ 
	if ($('#colorbox').length) 
	{
 		if( $('#colorbox').is(':hidden') ) 
 		{                    
      	}
    	else 
    	{
       		$.fn.colorbox.load();
    	}
   }
});
