jQuery(function () {
$('a.more').click(function () {

	var src = $(this).attr('title');
		$.modal('<iframe src="'+ src +'.html" height="470" width="920" style="border:none" frameborder="0">',
		{
			opacity:80,
			overlayCss: {backgroundColor:"#333"},
		closeHTML:"<a href='#' title='Close' class='modal-close'></a>",
		containerCss:{
		backgroundColor:"#fff",
		height:470,
		padding:20,
		width:920
	},
	overlayClose:true
});
	});
	
});

