$(document).ready(function(){ 
	// code here
	//$("#navigator a").ifixpng();
	$("#currency-guide select").change(function(){
		document.location = "?path=currency-guide&currency="+$(this).val();
	});
	
	
	$("a.popup-small").click(function(){
		popup($(this).attr("href"), 'popup');
		return false;
	});
	
	$("a.popup-big").click(function(){
		popup($(this).attr("href"), 'guide');
		return false;
	});
	
	$("a.popup-flash").click(function(){
		popup($(this).attr("href"), 'flash');
		return false;
	});


	
	
 });
 
 
 function popup(url, type){
 	var types = {
 		popup: "menubar=no,width=579,height=574,toolbar=no,location=no,status=no,directories=no,resizable=no,screenX=300,screenY=200",
 		guide: "width=733,height=710,screenX=150,screenY=100",
 		flash: "width=1024,height=800,screenX=0,screenY=0"
 	};
 	if ( $.popwin ) $.popwin.close();
 	$.popwin = window.open(url,"", types[type]);
 	
 }

