$(function(){
	$("a.gallery-popup").fancybox({
		hideOnContentClick: true
	});
	$("a.pop-cp").fancybox({
	});
    $('#banner img:gt(0)').hide();
    setInterval(function(){
      $('#banner :first-child').fadeOut(1500)
         .next('img').fadeIn(1500)
         .end().appendTo('#banner');}, 
      3000);
	$("div.description").expander({
		slicePoint: 300, userCollapseText: 'Close', expandText: 'More &raquo;'
	});
});
