/*
 * © fancy.lv, 2010
 */
 
$(document).ready(function(){
	$("#currency li.active a").click(function(){
		$("#currency li").toggle();
		return false;
	});
	$(document).click(function(){
		$("#currency li").hide();
	});
	$("a[rel='nofollow']").click(function(){
		//window.open($(this).attr("href"),'_self');
		//return false;
	});
});
