function openPop(){
		
		if($('#popup').is(':hidden')){
			
			$('#popup').fadeIn("fast");
			 
			 //degug
			 //alert("Width = "+$('#img').width()+" Height = "+$('#img').height());
			 
			 var widthBox = $('#img').width();
			 var heightBox = $('#img').height()+30;
			
			 $('#popup').css({'width':widthBox,'height':heightBox});
			 
			 $('div#popup').corner();
			 $("#popup").draggable({revert: false, helper: '',opacity: 0.35, snapMode: 'outer'});
			
		}else{
			
			$('#popup').fadeOut("slow");
		}
}


function configure(){
	
	
	$('#popup').css({'':''});
}
