$(function(){

	$('.thumb').click(function(){
		$('#galleryDetails').html( $(this).find('.contentDetails').html() );
		$('#galleryTitle').html( $(this).find('.contentTitle').html() );
		$('#galleryContainer').html( $('#galleryDefaultContent').html() );
		$('#galleryContainer').removeClass( 'me' );
		$('#galleryBar').html( $(this).find('.contentGallery').html() );
		$('#galleryLink').html( $(this).find('.contentLink').html() );
		
		centerPopup();  
		loadPopup();  

		$('#galleryContainer').gallery({
		  interval: 7000,
		  height: '550px',
		  width: '650px',
		  showOverlay: false
		});
	
	});

	$('.disc').click(function(){
		$('#galleryContainer').html( $(this).find('.contentDetails').html() );
		$('#galleryContainer').addClass( 'me' );
		$('#galleryTitle').html( $(this).find('.contentTitle').html() );
		$('#galleryDetails').html( "" );
		$('#galleryLink').html( "" );

		centerPopup();  
		loadPopup();  
	});
	

});

