$(document).ready(function(){
	
	
	// hover effect for bonus list
	
	$('.bonuses .item').bind('mouseenter',
	function() {
		$(this).addClass('itemHover');
	}
	);
	
	$('.bonuses .item').bind('mouseleave',
	function() {
		$(this).removeClass('itemHover');
	}
	);
	
	
	// hover effect review list
	
	$('.reviewList .item').bind('mouseenter',
	function() {
		$(this).addClass('itemHover');
	}
	);
	
	$('.reviewList .item').bind('mouseleave',
	function() {
		$(this).removeClass('itemHover');
	}
	);
	
	//colorbox
	
	$("a[rel='screenshots']").colorbox();
	
	$("a[rel='editorialImage']").colorbox();
	
	$("a[rel='attachment']").colorbox();
	
	$(".articleItem a img").click(function() {
		$(this).parent().colorbox();
	});
    
    



});

/*** languageSelector ***/

    function toggleCountrySelector() {
    	
    	if($('#countrySelector').css('display') == 'block') {
    		$('#countrySelector').slideUp();
    	} else {
    		$('#countrySelector').slideDown();
    	}
    }
