$(document).ready(function(){
	var w = 0;

	$('.slidepanel-trigger').each(function( idx ){	
		var toppos = parseInt($(this).css('top'));
		
		if ( idx + 1 == 1 ) {
			w = $(this).outerWidth(true);
		}else{
			toppos = toppos + 20 + w;
			w = $(this).outerWidth(true);
		}
		$(this).css({'left' : ($('.art-sheet').offset().left - $(this).outerHeight(true))+6+'px', 'top' : toppos+'px'});

		var isIE = $.browser.msie;
		if (isIE){
			$(this).css({'border-radius':'0px'});
			$(this).css({'border': '1px solid #271718',	'border-left': 'none', 'border-bottom-right-radius': '8px',	'border-top-right-radius': '8px'});
		}else{
			
		}

		$(this).mbFlipText(false);
	});
});

