$(document).ready(function() {
	$('#plugin_wallpapers ul li select').change(function() {
		address = $(this).val();
		$(this).val('');
		$(this).blur();
		
		if(address.match(/.exe/)) {
			window.location.href = '/?id=233&tx_wallpapers_pi1[file]=' + address;
		} else {
			window.open(address, 'wallpaper', '');
		}
	});
});
