// Some JQuery to enhance the theme

var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	$j('ul>li:last-child').addClass('last');

	$j('ul>li:first-child').addClass('first');
	
	$j('.half-column:last').addClass('last');
	
	$j('.half-column.last').after($j('<div class="clear"></div>'));
	
	$j('.third-column:last').addClass('last');
	
	$j('.third-column.last').after($j('<div class="clear"></div>'));
	
	$j('.nav>ul').after($j('<div class="clear"></div>'));
	
	$j('#footer div:first-child').addClass('first');
	
	$j('#widget_sp_image-4 .widget_sp_image-image-link').addClass('fancybox');
			
	$j(".fancybox").click(function() {
	
		$j.fancybox({
		
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		    : 560,
			'height'		: 349,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			
				'wmode'		      : 'transparent',
				'allowfullscreen' : 'true'
				
			}
			
		});

		return false;
	
	});

});
