$(document).ready(function() {
	//i hide the divs and show only the first one
	$('.features div.desc').hide(); 
	$('.features div#d1').show();
	//the show/hide system
	$('.features ul.tabs a').hover(function() {
		$('.features ul.tabs li').removeClass('active');
		$(this).parent().addClass('active');
		var nr = $(this).attr('id').substr(1);
		$('.features div.desc').hide();
		$('.features div#d'+nr).show();
	});
	
	//the info popup
	$('.ftrs li').hover(
		function() {
			$(this).css('z-index', 1);
			$(this).find('div.info').show();
		},
		function() {
			$(this).css('z-index', 0);
			$(this).find('div.info').hide();
		}
	);
	
	//the currency select
	$('.currency').hover(function(){}, function() {
		$('.currency div.types').hide();
	});
	$('.currency').click(function() {
		$('.currency div.types').show();
	});
	 $('.currency .types span').click(function() {
         window.location = SetCurrencyUrl + '&country=' +
   $(this).find('img').attr('alt');
     });

});
