var _body, iframe;
$(document).ready(function(){
	_body = $('body');
	_iframe = $('iframe');
	_iframe.attr('style','overflow-x:hidden;')
});
window.closeIframe = function(){
	_iframe.fadeOut(300);
}
window.lg = function(_href){
	_iframe.attr('src',_href);
}

