$(document).ready(function(){
    jQuery.noConflict();

// Menu1 transportations---------------------------------
    jQuery("#transportations").bind('mouseover', function() {
        jQuery("#transportations_img").show();
    });
    jQuery("#transportations").bind('mouseout', function() {
        jQuery("#transportations_img").hide();
    });
// Menu2 alumni---------------------------------
    jQuery("#alumni").bind('mouseover', function() {
        jQuery("#alumni_img").show();
    });
    jQuery("#alumni").bind('mouseout', function() {
        jQuery("#alumni_img").hide();
    });
// Menu1 school_store---------------------------------
    jQuery("#school_store").bind('mouseover', function() {
        jQuery("#school_store_img").show();
    });
    jQuery("#school_store").bind('mouseout', function() {
        jQuery("#school_store_img").hide();
    });
// Menu1 Punkt1---------------------------------
    jQuery("#summer_reading").bind('mouseover', function() {
        jQuery("#summer_reading_img").show();
    });
    jQuery("#summer_reading").bind('mouseout', function() {
        jQuery("#summer_reading_img").hide();
    });
// Menu1 Punkt1---------------------------------
    jQuery("#registration").bind('mouseover', function() {
        jQuery("#registration_img").show();
    });
    jQuery("#registration").bind('mouseout', function() {
        jQuery("#registration_img").hide();
    });
// Menu1 Punkt1---------------------------------
    jQuery("#emergency_closing").bind('mouseover', function() {
        jQuery("#emergency_closing_img").show();
    });
    jQuery("#emergency_closing").bind('mouseout', function() {
        jQuery("#emergency_closing_img").hide();
    });

              jQuery('a#font_up').click(function(){
                  //alert($('body').css('font-size'));
                  var currentFontSize = jQuery('#content_left_artic').css('font-size');
                  var currentFontSizeNum = parseFloat(currentFontSize, 10);
                  var newFontSize = currentFontSizeNum+1;
                  jQuery('#content_left_artic').css('font-size', newFontSize);
                  return false;
              });
              jQuery('a#font_norm').click(function(){
                  var newFontSize = 12;
                  jQuery('#content_left_artic').css('font-size', newFontSize);
              });
              jQuery('a#font_down').click(function(){
                  var currentFontSize = jQuery('#content_left_artic').css('font-size');
                  var currentFontSizeNum = parseFloat(currentFontSize, 10);
                  var newFontSize = currentFontSizeNum-1;
                  jQuery('#content_left_artic').css('font-size', newFontSize);
              });

});

function hide_ibox() {
    //alert('Test ok');
    iBox.hide();
}

function show_msg_send_ok() {
    //alert('Test ok');
    jQuery('#send_form_ok').css('display', 'block');
}






