$(document).ready(function() {
	equalHeight($(".col"));
	$(document).pngFix();
	$("#accordion").accordion({ active: false, autoHeight: false, collapsible: true });
	
	bgImageTotal=6;
	randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
	//test
	//imgPath = ('/bollington_health_leisure/Images/Layout/Backgrounds/' + randomNumber + '.jpg')
	//live
	imgPath = ('/Images/Layout/Backgrounds/' + randomNumber + '.jpg')

	$('body').css('background-image', ('url("'+imgPath+'")'));

});

var pagination_options = {
    num_edge_entries: 2,
    num_display_entries: 8,
    callback: pageselectCallback,
    items_per_page: 8
}
function pageselectCallback(page_index, jq) {
    var items_per_page = pagination_options.items_per_page;
    var offset = page_index * items_per_page;
    var new_content = $('#hiddenresult div.result').slice(offset, offset + items_per_page).clone();
    $('#Searchresult').empty().append(new_content);
    return false;
}
function initPagination() {
    var num_entries = $('#hiddenresult div.result').length;
    // Create pagination element
    $("#Pagination").pagination(num_entries, pagination_options);
}
$(document).ready(function() {
    initPagination();
});


