jQuery(function($){
	jQuery("a.gmap_window").colorbox({
		width:"850",
		height:"640",
		iframe:true,
		scrolling:false
	});
	if($.browser.msie && $.browser.version=="7.0") {
		$('#gplus').hide();
	}
	/*
	$('.news-text td a').colorbox({
		href: $(this).attr('href')+('#room-colorbox')
		
	});
	*/
	$('.news-text td a').each(function() {
		var href = $(this).attr('href');
		$(this).colorbox({
			href: href+(' #room-colorbox'),
			onComplete: function () { Cufon.refresh(); }
		});
	})
	
});

function colorboxOpen(el) {
	$.colorbox({href:el.href});
}

function colorboxWindowOpen(el) {
	var url = el.href;
	var sign = (url.indexOf('?') > 0) ? '&' : '?';
	url += sign + 'win=gmap';
	$.colorbox({
		href:url,
		iframe:true,
		width:'70%',
		height:'80%'
	});
}
