﻿/* Global SQ - Main functions */

$(function() {

  // change the background image depending on the hovered country
/* 
  $('#menu_pais li a').hover(function() {
    if ($(this).attr('class') == 'firstitem ')
        $('#image').css("background-image", "url(Files/System/Global_SQ/images/Portugal/logo_1.gif)");
    else { 
      if ($(this).attr('class') == 'lastitem ') 
        $('#image').css("background-image", "url(Files/System/Global_SQ/images/Mocambique/logo.gif)");             
      else 
        $('#image').css("background-image", "url(Files/System/Global_SQ/images/CaboVerde/logo.gif)");
    }
  },
  function() {
    $('#image').css("background-image", "url(Files/System/Global_SQ/images/Portugal/logo_1.gif)");
  });
  */
});

