//var j = jQuery.noConflict();

(function($) {

	var fancyEmbed = function(s) {
		$(s)
			.attr('wmode', 'transparent')
			.wrap($('<div style="position: relative; z-index:0;" />'));
	};

	jQuery(document).ready(function ($) {
		if (!$.support.htmlSerialize) { /*If browser doesn't support htmlSerialize then use altHtml embed here */
			$('object').each(function () {
				$(this).replaceWith($(this).attr('altHtml'));
			});
		}
		else {
			$('object').prepend('<param name="wmode" value="transparent" />');
		}

		fancyEmbed('embed');
		fancyEmbed('embed:first');
		
		//$('embed').each(function () {
		//	$(this).attr('wmode', 'transparent');
		//	$(this).wrap('<div style="position: relative; z-index:0;">');
		//});
		
		$('.artmenu').prepend('<li class="page_item"><a title="Online Shop" href="http://www.beachmountain-shop.ch" target="_blank"><span><span>Online Shop</span></span></a></li><li><span class="separator"></span></li>');
	});

}) (jQuery);
