$(document).ready(function(){
	//for google maps
	m = new Map($('#map')[0], $('#map_nl').val(), $('#map_el').val(), $('#map_zoom').val());
	if(m.init()){
		m.showMap(false, false);
		m.setCenter(true);
	}
	
	//for lightbox
	$('a[@rel*=lightbox]').lightBox();
});

function relatedSearch(tag, exclude_id, e){
	//change styles
	$(e).css('background-color', '#E7E7E7');
	$('#entry_related_list').html('<img src="./img/loading.gif" alt="loading..."/>');
					
	$.ajax({
		type: 'GET',
		url: './app/pc/contents/view_tag',
		data: 'p=' + tag + '&exclude_id=' + exclude_id,
		success: function(html){
			$('#entry_related_list').html(html);
			}
		});
}