$(function () {
$("a:has(img)").css("border","0");
//$("a:has(img)").addClass("noborder");
$(".entry_content p").next("h3").css("margin-top","29px");
$(".entry_content p").next("h2").css("margin","29px 0 -10px 0");
$("a[href$=.jpg],a[href$=.png],a[href$=.gif]").fancybox({
	'overlayOpacity':0,
	'hideOnContentClick':true,
	'speedIn':250,
	'titlePosition':'inside',
	'margin':0,
	'padding':0
});
$("a.yt").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 853,
			'height'		: 480,
			'overlayColor'	: '#f6f6f6',
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent'
			}
		});

	return false;
});

});
