function pop(obj) {
wobj = window.open("", "pop","scrollbars=yes,width=750,height=500");
obj.target = "pop";
wobj.focus();
return true;
}

$(function(){
//スライドパネル
	$('#content .slide').slidePanel();
});

$(function(){
//ニュース、トップ
//div.entryのimgのあるpに"photo"クラスを付与
//p.photoでfloatさせ段組にさせるため。編集時にはクラス付け不要
	$("body.home #content div.entry p:has(img)").addClass("photo");
});

$(function(){
	$("body.news #content div.entry p:has(img)").addClass("photo");
});

$(function(){
//カタログ
//div.bodyのimgがあるpに"cover"クラス付与
	$("#content div.body p:has(img)").addClass("cover");
});

//カタログ
//li.detailの画像に"Hover"クラス付与
//
//$(function(){
//	$("li.detail img").addClass("Hover");
//});

//div.entryの中のimgを持つa要素に"thickbox"クラスを付与
//
//$(function(){
//	$(".entry a:has(img)").addClass("thickbox");
//});


//$(function(){
//	$('body.news.index div.post p.photo').remove(":contains('')");
//});

//$(function(){
//	$('body.index div.entry p:has(img)').wrap('<div class="photo"></div>');
//});

