jQuery(document).ready(function(){
	jQuery('.post').click(function(){
		id = jQuery(this).attr('id');
		window.location = id;
	})
})
