
(function() {

$(function() {
    
    $('#Slides').jawaSlides();
    $('#Slides .Navi').supersleight();
    
	$('#TripleThreat .gbox')
		.each(function() {
			
			$(this).click(function(event) {
				
				var href = $(this).find('a.more').attr('href');
				
				if (href)
					window.location.href = href;
				
				return true;
				
			});
		
			$(this).css({
				'cursor': 'pointer'
			});
			
		});
	
	$('#Content .btns .btn')
		.each(function() {
			
			$(this).click(function(event) {
				
				var href = $(this).find('.play a').attr('href');
				
				if (href)
					window.location.href = href;
				
				return true;
				
			});
		
			$(this).css({
				'cursor': 'pointer'
			});
			
		});
	
});

})();

