if (typeof jQuery !== 'undefined'){
    jQuery(function ($){ 
		
		$('.viewVideo').hover( function() {$(this).fadeTo(0, 0.5);}, function() {$(this).fadeTo('slow', 1);});
		
		$('div.portfolio a img').each(function() { 
			$(this).hover( function() {$(this).fadeTo(0, 0.4);}, function() {$(this).fadeTo('medium', 1);});
		});
							
	
		//$("a.viewVideo").trigger('click');
		$('a.viewVideo').fancybox({
			'padding'			: 20,
			'autoScale'			: true,
			'titleShow'			: false
		});
					
	});
}