// This script is to include in any sedction of main_full_top. Adds the offer name        
        
        window.addEvent('domready', function(){
            if (Cookie.read('url') && Cookie.read('nameOffer'))
            {
                var aElement  = new Element('a', {href: Cookie.read('url')});
                var h1Element = new Element('h1', {'class': 'jobs Fleft', style: 'margin-left:10px;'});
                var imgArrowElement  = new Element('img', {src: '/themes/default/images/jobs/main_full_top_arrow.gif', style: 'margin-right:0px;'});
                var h1ArrowElement   = new Element('h1', {'class': 'jobs Fleft', style: 'margin-left:10px;'});

                imgArrowElement.inject(h1ArrowElement);
                h1ArrowElement.inject($('mainFullTopOne'), 'after');
                
                h1Element.inject(aElement).set('text', Cookie.read('nameOffer'));
                aElement.inject($('mainFullTopOne'), 'after');

            }
        });

