    
    window.addEvent('domready',function()
    {
        if($('featuredPosts'))
        {
        	var featured = new gallery($('featuredPosts'), {
            	timed: true,
            	showCarousel: false,
            	embedLinks: false
        	});
        }
    	
        if($$('.popup'))
        {
            $$('.popup').addEvent('click', function(e)
            {
                e.stop();
                
                window.open(this.href,'shop','width=700, height=600');
            });
        }
        
        if($$('.radio1webplayer'))
        {
            $$('.radio1webplayer').addEvent('click', function(e)
            {
                e.stop();
                
                window.open(this.href,'shop','width=512, height=271');
            });
        }
    });
    
    function showDiv(div)
    {
        $(div).style.display = "block";
    }