/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function () {

    $('#nav ul').each(function(index){
        if($('li:nth-child(1)', this).text()!="")
            $(this).parent().addClass('down');
    });

    $('#nav li').hover(
        function () {
            //show its submenu
            if($('li', this).text()!="")
            {
                $('ul', this).show(1);
                $('ul', this).addClass('shadow');
                $('ul', this).offsetParent().css('background-color','white');
//                $('ul', this).offsetParent().removeClass('up');
                $('ul', this).offsetParent().addClass('shadow-right');
            }
        },
        function () {
            //hide its submenu
            if($('li', this).text()!="")
            {
                $('ul', this).hide(1);
                $('ul', this).removeClass('shadow');
                $('ul', this).offsetParent().css('background-color','');
                $('ul', this).offsetParent().removeClass('shadow-right');
//                $('ul', this).offsetParent().addClass('up');
            }
        }
    );

    $('.clearField').clearField();
});



$(window).bind("load", function() {
    $("div#mygalone").slideView();

$(".select_amount").colorbox();
$("input").removeAttr('disabled');

});
