// JavaScript Document

$(document).ready(function(){
	
	$(".faq .more").click(function(){
//		alert($(this).parents('ul').find('div').css('display'));						   
		if($(this).parents('.topic').find('.add').css('display')=="none"){
			$(this).text('LESS');
			$(this).parents('.topic').find('.add').show("slow");
		}else{
			$(this).text('MORE');
			$(this).parents('.topic').find('.add').hide("slow");
		}
	});
	
	$('.product LI').each(function() {
		$(this).css('zIndex', 5);

	});
										   
	
});
