function countryhide(obj)
{	
    var id = $(obj).attr('id');
	
    $(".home-event-description").hide();
		
    $(".home-event > div").each(function(i){
		
        if($(this).attr('class')=='event-arrow')
        {
            $(this).hide();
        }
    });
		
    $("#home-event-description_" + id).show();
	$("#home-event-description_" + id).attr({ style :"background-color:#F3D493;" });	
	$("#img_" + id).attr({ src : BASEPATH + "images/this_week_pointer.png" });	
    $("#arrow_" + id).show();
}

function countryhide2(obj)
{	
	var id = $(obj).attr('id');
	
    $(".home-event-description2").hide();
		
    $(".home-event2 > div").each(function(i){
		
        if($(this).attr('class')=='event-arrow2')
        {
            $(this).hide();
        }
    });
		
    $("#home-event-description2_" + id).show();
	$("#home-event-description2_" + id).attr({ style :"background-color:#B296C7;" });
	$("#img2_" + id).attr({ src : BASEPATH + "images/next_week_pointer.gif" });		
    $("#arrow2_" + id).show();
}

function countryhide3(obj)
{	
	var id = $(obj).attr('id');
	
    $(".home-event-description3").hide();
		
    $(".home-event3 > div").each(function(i){
		
        if($(this).attr('class')=='event-arrow3')
        {
            $(this).hide();
        }
    });
		
    $("#home-event-description3_" + id).show();
	$("#home-event-description3_" + id).attr({ style :"background-color:#9A9A9A;" });
	$("#img3_" + id).attr({ src : BASEPATH + "images/following_week_pointer.gif" });	
    $("#arrow3_" + id).show();
}