jQuery(document).ready(function($){

	resize();
	jQuery(window).resize(function(){
		resize();
	});
	
	$('a#sesh').click(function(){
		$.ajax({
			url: 'http://www.oneightycreative.com/wp-content/themes/imbalance/sessionloader.php?action=create',
			success: function(){
				$('#splash').fadeOut('slow');
			}
		});
	});
	
	$('a#clear').click(function(){
		$.ajax({
			url: 'http://www.oneightycreative.com/wp-content/themes/imbalance/sessionloader.php?action=flush'
		});
	});
	
	$("div.article-over").click(function(){
		window.location = $("h2 a",this).attr("href");
	});
	
	
});

function resize(){
	if(jQuery(window).width() < 1145 ){
		jQuery("#subscribe").hide();
	}else{
		jQuery("#subscribe").show();
	}
}
