$(function(){

//Show subscribe box on click
$('#nav-subscribe').click(function(){
	$('header fieldset ').show();
	$('header nav ul li a').removeClass('current');
	$(this).addClass('current');
});

$('#top-gallery-inner').cycle({
fx:'scrollHorz',
speed:400,
pause:1,
next: '#next',
prev: '#prev',
pager: '#pager',
timeout: 5000
});

$("a.fancybox").fancybox();

$("section.hidden-stuff").hide();

$("#SHOW-MORE").click(function(){
	
	//console.log('clicked')

	//alert("clicked");
	
	$("#SHOW-MORE").remove();
	
	$(".hidden-stuff").slideDown(500, function(){
	
	//window.SoftScroll.scrollTo(0,1600);
	
	  SoftScroll.go("footer");
		
	});
});


//twitter getter
getTwitters('tweet', { 
  id: '7THMANMAGAZINE', 
  count: 5, 
  enableLinks: true, 
  ignoreReplies: true, 
  clearContents: true,
  template: '%text% <a href="http://twitter.com/%user_screen_name%/statuses/%id_str%/">%time%</a>'
});


$('.post img').width(594);


}); // end all doc ready fucntions
