// JavaScript Document
// Navigation Drop Down Menu
$(document).ready(function() {
	$('#nav li').hover(
		function () {
			$('ul', this).fadeIn(700);
		},
		function () {
			$('ul', this).fadeOut(700);
		});
});

// Javascript Font replace
Cufon.replace('.slogan_text',{
	textShadow: '2px 2px #b0b0b0'
});
Cufon.replace('.footer_text');
Cufon.replace('a,p,span,.success_text,ul.list li');

// Game icon hover
$(document).ready(function() {
	$('#games_scroll img').click(
		function() {
			$(this).attr("src", $(this).attr("src").split("_hover.").join("_active."));
	});
	$('#games_scroll img').hover(
		function() {
			$(this).attr("src", $(this).attr("src").split(".").join("_hover."));
		},
		function() {
			$(this).attr("src", $(this).attr("src").split("_hover.").join("."));
	});
});

/*$('img[title]').qtip({
        show: {
                delay: 0
        },
        style: {
                name: 'red',
                tip: 'topLeft',
                border: {
                        width: 1,
                        radius: 5
                }
        },
        effect: {
                type: 'fade',
                length: 500
        }
});*/

