// JavaScript Document
 jQuery(document).ready(function(){		    
								
	jQuery.each(jQuery(".popup"),function(i,item){
                     var url = jQuery(this).attr('href');
                     jQuery(this).attr('href',url+'&type=1');
	});
	
	jQuery(".popup").colorbox({width:"800px", height:"560px",opacity:"0.7", iframe:true,scrolling:"false",close:""}); 
   
});
  
