/* main.js
 *
 * Javascript code used by the main page
 */

$(document).ready(function(){
	
});

//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// Function used to show the full details of a news entry.
function showNewsDetails(id){
	
	$("#news-resumes-wrapper").slideUp('normal', function(){
		$("#news-details-"+id).slideDown('normal', function(){
			$("#news-details-"+id).jScrollPane({showArrows:true, scrollbarWidth:12, wheelSpeed:40, reinitialiseOnImageLoad:true});
		});
	})
}

//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// Function used to hide the full details of a news entry showing back the entries listing.
function hideNewsDetails(id, height){

	$("#news-details-"+id).parent().slideUp('normal', function(){
		$("#news-details-"+id).hide();
		$("#news-details-"+id).jScrollPaneRemove();
		$("#news-details-"+id).css('overflow', 'auto');
		$("#news-details-"+id).css('height', height+'px');
		$("#news-resumes-wrapper").slideDown();
	});
}