$(document).ready
(
	function()
	{
		$('select', '#homepage-dropdown').change 
		( 
			function() 
			{
				$(this).find("option:selected").each
				(
					function()
					{
						url = $(this).attr('value');
						location.href = url;
					}
				);
			}
		);
	}
);

