/*----------------------------------------------------
jsEffects Document 
Site: www.whenisfathersday,net
Created: Mon 23.03.09 @ 20:17 p.m.
Updated: --- --.--.-- @ --:-- -.-.
Author: Kean Richmond
----------------------------------------------------*/


// 01. show_infopopup
//------------------------------------------------------------------------------------------

function show_infopopup(id){
	if($.browser.msie && $.browser.version <= 6 ) $(".country_options").hide();
	$('.information_popup').fadeOut('fast');
	$('#'+id).fadeIn('slow');
	if($.browser.msie && $.browser.version == 7 ){
		//Do nothing
	}else{
		$(function(){
			$('#scrollpane_'+id).jScrollPane({
				scrollbarWidth: 8,
				dragMinHeight: 23,
				dragMaxHeight: 23
			});
		});
	}

}


// 02. hide_infopopup
//------------------------------------------------------------------------------------------

function hide_infopopup(id){
	$('#'+id).fadeOut();
	if($.browser.msie && $.browser.version <= 6 ) $(".country_options").show();
}