
// Script Search ///////////////////////////////////////////////

$(document).ready(function(){
$('#tabs_search div').hide(); // Hide all divs
$('#tabs_search div:first').show(); // Show the first div
$('#tabs_search ul li:first').addClass('active_search'); // Set the class of the first link to active
$('#tabs_search ul li a').click(function(){ //When any link is clicked
$('#tabs_search ul li').removeClass('active_search'); // Remove active class from all links
$(this).parent().addClass('active_search'); //Set clicked link class to active
var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
$('#tabs_search div').hide(); // Hide all divs
$(currentTab).show(); // Show div with id equal to variable currentTab
return false;
});
});

// End Script Search ///////////////////////////////////////////////

// De tai noi bat - Share detai ///////////////////////////////////////////////

function changeTabDetaiNoiBat_ShareDetai(val){
	if (val==1){
		document.getElementById('tabnoibat_img').src="../App_Themes/default/tab_detainoibat_active.png";
		document.getElementById('tabshare_img').src="../App_Themes/default/tab_sharedetai_up.png";
		document.getElementById('tabshare_img').style.cursor="pointer";
		document.getElementById('tabnoibat').style.display="block";
		document.getElementById('tabshare').style.display="none";						
		
	}else {
		document.getElementById('tabnoibat_img').src="../App_Themes/default/tab_detainoibat_up.png";
		document.getElementById('tabnoibat_img').style.cursor="pointer";
		document.getElementById('tabshare_img').src="../App_Themes/default/tab_sharedetai_active.png";			
		document.getElementById('tabnoibat').style.display="none";
		document.getElementById('tabshare').style.display="block";		
	}
}

// End - De tai noi bat - Share detai ///////////////////////////////////////////////	

// De tai xem nhieu - Giao dich thanh cong ///////////////////////////////////////////////

function changeTabXemNhieu_GiaoDichThanhCong(val){
	if (val==1){
		document.getElementById('detaixemnhieu_img').src="../App_Themes/default/tab_detaixemnhieu_active.png";
		document.getElementById('giaodichthanhcong_img').src="../App_Themes/default/tab_giaodichthanhcong_up.png";
		document.getElementById('giaodichthanhcong_img').style.cursor="pointer";
		document.getElementById('tabdetaixemnhieu').style.display="block";
		document.getElementById('tabgiaodichthanhcong').style.display="none";						
		
	}else {
		document.getElementById('detaixemnhieu_img').src="../App_Themes/default/tab_detaixemnhieu_up.png";
		document.getElementById('detaixemnhieu_img').style.cursor="pointer";
		document.getElementById('giaodichthanhcong_img').src="../App_Themes/default/tab_giaodichthanhcong_active.png";			
		document.getElementById('tabdetaixemnhieu').style.display="none";
		document.getElementById('tabgiaodichthanhcong').style.display="block";		
	}
}

// De tai xem nhieu - Giao dich thanh cong  ///////////////////////////////////////////////	
