$(function() {
	$("a[rel='newPage']").click(function(){
		var targetLink = $(this).attr("href");
			window.open(targetLink);
		return false;
	});
			
	function ticker () {
		setTimeout(function() {
			$('#news > ul li:first').animate( {marginTop: '-37px'}, 800, function() {
				$(this).detach().appendTo('#news > ul').css('margin-top', '0');
			});
			ticker();
		}, 6000);
	};
	ticker();
	
	$("a.downloads").fancybox({
		padding: 0,
		scrolling: 'no',
		type: 'iframe',
		titlePosition: 'over',
		width:704,
		height:418
	});
	
	$("#countryPicker").change(function(){
		if($(this).val() !== "") {
			window.location = $(this).val();
		}
	});
});
