
$(document).ready(function()
{
	/**
	 * Handler for country select
	 * @access public
	 * @return void
	 */
	$(".droplist_top").change(function() 
	{
		var form = $("#selectCountry").submit();
	});
	
	/**
	 * Handler for launching popups in new windows
	 * @access public
	 * @return void
	 */
	$('A[rel="popup"]').click( function() {
        window.open($(this).attr('href'), 'popupWindow', 'menubar=0, resizable=0, width=300, height=380');
        return false;
    });
	
	 
});

