//cufon
Cufon.replace('h1,h2,h3,h4',
	{
	fontFamily: 'Helvetica Neue',
	hover: true
	}
)

//jQuery		
$(document).ready(function(){

	//fancybox popups
	$("a.lightbox").fancybox();
	
	$("#portfolio-featured").easySlider({
		auto: true, 
		continuous: true,
		controlsShow:false
	});
	
	//konami code
	if ( window.addEventListener ) {  
		var state = 0, konami = [38,38,40,40,37,39,37,39,66,65];  
		window.addEventListener("keydown", function(e) {  
		if ( e.keyCode == konami[state] ) state++;  
		else state = 0;  
		if ( state == 10 )  
			window.location = "http://konami.com";  
		}, true);  
	} 


});
