(function($)
    {
        $(function() {

            lastBlock = $(".a1");
            maxWidth = 678;
            minWidth = 34;

            $("#flash_menu ul li a").hover(
                function(){
                    $(lastBlock).animate({
                        width: minWidth+"px"
                    }, {
                        queue:false,
                        duration:400
                    });
                    $(this).animate({
                        width: maxWidth+"px"
                    }, {
                        queue:false,
                        duration:400
                    });
                    lastBlock = this;
                }
                );


            $(".various1").fancybox({
                'transitionIn'		: 'none',
                'transitionOut'		: 'none',
                'autoScale'             : false,
                'width'				: 500,
                'height'			: 500,
                'scrolling'   		: 'no'

            });


            $('input[name="email"]').click(function() {
                if($(this).val() == 'Потребителско име...' || $(this).val() == 'Username...' ){
                    $(this).val('');
                }
            });

            $('input[name="password"]').click(function() {
                if($(this).val() == 'Парола...' || $(this).val() == 'Password...'){
                    $(this).val('');
                }
            });

        });
    })(jQuery);
