/*jQuery(document).ready(function(){
	//just testing for another project
	jQuery('#outsidecontainer').css('opacity',0);
	jQuery('#outsidecontainer').animate({
		opacity: 1
	});
	jQuery('#container').css('overflow','hidden');
	jQuery('#content').css('position','relative');
	
	slide_everything();
	jQuery("#gallery_container").touchwipe({
		 wipeLeft: function() { slide_everything(); },
		 wipeRight: function() { slide_everything(); },
		 wipeUp: function() { slide_everything(); },
		 wipeDown: function() { slide_everything(); },
		 min_move_x: 20,
		 min_move_y: 20,
		 preventDefaultEvents: true
	});
});
function slide_everything(){
	jQuery('.display_none_bitch').css('display','none');
	jQuery('#content').css('left','1000px');
	jQuery('#content,.display_none_bitch').css('opacity',0);
	
	jQuery('#content').animate({
		left: 0,
		opacity: 1
	},500,function(){
		jQuery('.display_none_bitch').show();
		jQuery('.display_none_bitch').animate({
			opacity: 1
		},500);
	});
}	*/
