$(function(){
	$('table#tbl_2 tr:even th').css('background-color','#DFECF0');
	$('table#tbl_2 tr:odd th').css('background-color','#D2DEE2');
	$('table#tbl_2 tr:odd td').css('background-color','#f0f0f0');
	
	//add bookmark
	$('.add_favorite').click(function(){
		addFavorite("寺前住宅｜物件詳細："+$(this).attr('name'),location.href);
	});
	
	//lightbox
	$('a[rel=lightbox]').lightBox();
	
});

function addFavorite(title, url){
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}
