$(document).ready(function() {

$('.j_inactive').removeClass('j_inactive').addClass('j_active');

	$('.popup_container').hide();
	$('.product_long_description').css('display','block');		

	
	$('a.open').click(function(){
		$('.product_long_description').css('display','block');		
		$('.popup_container').hide();	
		$(this).next().find('.popup_container').fadeIn('fast');
		$(this).css('outline','none');
		return false;
	});
	
	$('.close_long_desc').click(function(){
		$(this).parent().fadeOut('fast');
		$(this).parent().parent().prev('.more_info').removeAttr('style')
		return false;
	});

});