var j = $.noConflict();	 	
	 	j(document).ready(function(){
			j(".large").colorbox({
				width:"65%", 
				height:"100%", 
				iframe:true, 
				onLoad:function(){
					document.body.style.overflow = 'hidden'; 
				}, 
				onClosed:function(){ 
					document.body.style.overflow = 'visible';
				}
			});
			
			j(".medium").colorbox({
				width:"60%", 
				height:"65%", 
				iframe:true
				
			});
			
			j(".small").colorbox({
				width:"50%", 
				height:"50%", 
				iframe:true 
			});
			
			
			j(".edituser").colorbox({
				width:"60%", 
				height:"50%", 
				iframe:true
				
			});
			
		});
