// JavaScript Document

function toggleHomePhoto(pSortBy, pTabIndex) {
	param = "sortBy=" + pSortBy + "&tabIndex=" + pTabIndex;
	http('index_photoshome.php',param,toggleHomePhotoResult);
}

function toggleHomePhotoResult(response){
	$('div_panel_home_photos').innerHTML = response;	
}

function toggleHomeVideo(pSortBy, pTabIndex) {
	param = "sortBy=" + pSortBy + "&tabIndex=" + pTabIndex;
	http('index_videoshome.php',param,toggleHomeVideoResult);
}

function toggleHomeVideoResult(response){
	$('div_panel_home_videos').innerHTML = response;	
}