$(document).ready(function()
{
    
        $('select#langs').bind('change',
            function(){
                location.href = this.value;  
            }
        );
        
        var Menu = new function()
        {
                var selectedItem = null;

                $("#topMenu li span").hover(
                function(){
                        if($(this).attr('class') && $(this).attr('class') != 'undefined'){
                                if($(this).attr('class').toString().indexOf('selected') == -1)
                                        return;
                        }
                        else{
                                $(this).removeClass('hover');
                                $(this).addClass('hover');
                        }
                
                },
                function(){
                        $(this).removeClass('hover');
                }
                )

        };

        var RollOver = new function()
        {
                $("input:submit").hover
                (
                        function() {
                                this.className = "hover";
                        },

                        function() {
                                this.className = "";
                        }
                );

                $(".btnLeft, .btnRight").hover
                (
                        function() {
                                this.style.backgroundPosition = "0px -24px";
                        },

                        function() {
                                this.style.backgroundPosition = "0px 0px";
                        }
                );
        }

});

