/**
* Works
*
* @author Tobias Schibler <tobias@tujo.net>
* @package JavaScript
* @copyright 2007 tujo ANS
*/


stack.push({r: function(){
	/** put the fence on each prev  */
	$('div.prev').each( function(){
//		$(this)
//		.prepend('<div class="prev-fence-1">&nbsp;</div>')
//		.prepend('<div class="prev-fence-2">&nbsp;</div>')
//		;
		if($.browser.msie && $.browser.version <= 6){
			if(parseFloat($(this).css('margin-left'))>0){
				$(this).css('margin-left', parseFloat($(this).css('margin-left'))/2);
			}
		}
	});
	$('div#fence-1').before('<div id="big-fence-1">&nbsp;</div>');
	if($.browser.msie && $.browser.version >= 7 || $.browser.safari)
		$('div.prev-fence-1').addClass('fix');
}});