$(function () {
	var currentWidth = $(window).width();
	if(currentWidth < 480) {
		$(".iframe").fancybox({
			href: 'http://www.questline.com/wp-content/themes/questline/modal.html',
			scrolling: 'no',
			type: 'iframe'
		});
	} else {
		$(".iframe").fancybox({
			href: 'http://www.questline.com/wp-content/themes/questline/modal.html',
			scrolling: 'no',
			width: 500,
			height: 176,
			type: 'iframe'
		});
	}
});

$(function () {
	$('#nav-select').change( function () {
        if($(this).val() != '') {
            window.location = $(this).val();
        }
	});
});

$(function () {
	$('.global > li:last').addClass("last");
});















