/**
* This code 'borrowed' from Sitepoint http://www.sitepoint.com/blogs/2009/05/12/does-your-site-have-the-konami-code/
*/

//var kkeys=[],konami="38,38,40,40,37,39,37,39,66,65";$(document).keydown(function(e){kkeys.push(e.keyCode);if(kkeys.toString().indexOf(konami)>=0){$(document).unbind('keydown',arguments.callee);frog=$("<div></div>").css({'position':'absolute','left':'50px','top':'100px','display':'none'});img=$("<img></img").attr("src","graphics/misc/ferdinand.png");frog.attr("id","frog");img.appendTo(frog);$("body").append(frog);frog.show("slow");}});

$(document).ready(function() {
	$(".scrollbar").jScrollPane({
		scrollbarWidth: 15,
		showArrows: true
	});
	$(".banners").easySlider({
		auto: true,
		continuous: true,
		loop: true,
		autogeneratePagination: true,
		orientation: 'horizontal',
		pause: 8000,
		easing: 'linear',
		numeric: true,
		numericID: 'controls'
	});
	$("a.single").fancybox();
	$("a#inline").fancybox({
		'hideOnContentClick': false
	});
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.6,
		'overlayColor'	:	'#000',
		'titlePosition'	:	'over'
	});
	$('.rollover').hover(function(){
		var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);}, function() {
		var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
	});

}(window, document));

