/**
 * @desc Show Store Pop
 */
shopStorePop = function (overlay_container) {
    overlay_container.css({
	'width': 552, 
	'marginLeft': -276, 
	'height': 620, 
	'marginTop': -310, 
	top: $(document).scrollTop()+($(window).height()/2)
    });
    overlay_container.append($('._storepop').html());
    $('.quick_close').click(overlay_close);
}
$(function() {
    $('#primary_campaigns .flash').each(function() {
	var path = $(this).text();
	$(this).flash({
	    swf: path,
	    width: 292,
	    height: 134,
	    wmode: 'opaque'
	})
    });
    if ($('._storepop').html()) {
	overlay(shopStorePop);
    }

	$('a[href="' + document.location.pathname.substr(1) + '"]').addClass('active');
});
