$(function (){
	var swapMenu = function (box,strip,body){
		if(!box.find('div.body:visible').length){
			body.show('fast');
		}
		else {
			body.hide('fast');
		}
	}
	$('.box-home').each(function (){
		var box = $(this);
		var strip = box.find('div.strip:first');
		var body = box.find('div.body:first');
		//setup click on strip
		strip.click(function (){
			swapMenu(box,strip,body);
		})
		
	})
})
