jQuery(document).ready(function($){
	
	// efx menu
	var mn = $('#nav a')
	mn.each(function(){
		$(this).hover(
			function(){
				$(this).stop().animate({'opacity':0},400)
			},
			function(){
				$(this).stop().animate({'opacity':1},400)
			}
		)
	})
	$('.linkexended').linkExtender({
		'_targetBlank'		: false,
		'_targetLinkClass'	: null
	})
	$.fn.supersized.options = {  
		startwidth: 1440,  
		startheight: 960,
		vertical_center: 1,
		slides : [
			{image : 'i/t/bg-big.jpg' }
		]
	};
	$('#supersized').supersized(); 
})

