
		$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true,
				continuous: true 
			});
		});	
		
		$("#video_thumb").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});

$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$(".iframe").fancybox();
	
	
});

		$(".cat-post-item a ").click(function(){
			$(".entry").parent().html("").addClass("loading").load($(this).attr("href") + " .entry",function(){
				$(".entry").parent().removeClass("loading");
			});
			return false;
		});

