$(document).ready(function(){
	
	$("#gallery").delegate('li a','click', function(e) {
		    if (e.type == 'click') {
				var newPath = $(this).find('img').attr("src");
		     	$('#imageView').attr("src", newPath);
				return false;
		    }
		});
	
	$('#faq p').slideUp();
	$("#faq").delegate('li a','click', function(e) {
		    if (e.type == 'click') {
				$('#faq p').stop().slideUp();
				$(this).stop().parent().find('p').slideDown();
				return false;
		    }
		});
	
});

