// 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:"600px", height:"500px",opacity:"0.7", iframe:true}); 
   
});
  
