﻿jQuery(document).ready(function() {

    // Main-Navigation Animation '#navigation ul a'
    $('#navigation ul a').css({ backgroundPosition: "0 0", height: "34px"
    }).mouseenter(function() {
        $(this).stop().animate(
			    { backgroundPosition: "(0 -100px)", height: "40px" },
			    { duration: 250 })
    }).mouseleave(function() {
        $(this).stop().animate(
			    { backgroundPosition: "(0 0)", height: "34px" },
			    { duration: 300 })
    });

    $('.easyMenu').mouseenter(function() {
        var targetID = $(this).attr('class').split(" ")[1].replace("target_", "");

        $("#ctl00_snav_a_" + targetID).stop().animate(
        { backgroundPosition: "(0 -100px)", height: "40px" },
        { duration: 250 })
    }).mouseleave(function() {
        var targetID = $(this).attr('class').split(" ")[1].replace("target_", "");

        $("#ctl00_snav_a_" + targetID).stop().animate(
	    { backgroundPosition: "(0 0)", height: "34px" },
	    { duration: 300 })
    });


});
