// JavaScript Document
$(document).ready(function() {
	if($('#in-home ul'))
		$('#in-home ul').innerfade({ speed: 2000, timeout: 6500, type: 'sequence', containerheight: '500px' });
	if($('#collection-menu')){
		$('#collection-item').prepend($('#collection-menu'));
	}
	$("section").append("<div class=\"break\">&nbsp;</div>");
	if($("#search-result ul li").length && !$("#search-result ul li.no-result").length){
		$("#search-result ul li a").click(function(e){
			e.preventDefault();
			$.post($(this).attr("href"), function(data){
				 if(data){
					 $("#shop-detail h1").html(data.shopName);
					 if(data.address)
						 $("#shop-detail #address").html("<strong>Address:</strong><span>"+data.address+"</span>");
					 if(data.phone)
						 $("#shop-detail #phone").html("<strong>Phone No:</strong><span>"+data.phone+"</span>");
					  $("#shop-detail p").html(data.desc);
				 }
			}, "json");
		});
	}
});
$(window).load(function(){
	if($('#photo-gallery').is("ul")){
		$('.cntnt').append($('#photo-gallery'));
		$('.cntnt').css('height','auto');
		$('#photo-gallery').masonry({
		  itemSelector: '.photo-item',
		  columnWidth: 122,
		  gutterWidth: 15,
		  isFitWidth: false
		});
		$("#photo-gallery a").lightBox();
	}
});
