var $j = jQuery.noConflict();
$j(function() {
	$j('a.gallery').lightBox();
});

    
function tabSwitch(new_tab,new_content) {	
	var i = 0;
	for(i=1;i<=4;i++) {  
		document.getElementById('content_'+i).style.display = 'none'; 
		document.getElementById('tab_'+i).className = ''; 
	}
    document.getElementById(new_content).style.display = 'block';           
    document.getElementById(new_tab).className = 'active';        
}  


//Processor get date
var getDate=new Date()
var getYear=getDate.getYear()
if (getYear < 1000)
getYear+=1900
var getDay=getDate.getDay()
var getMonth=getDate.getMonth()+1
if (getMonth<10)
getMonth="0"+getMonth
var getCurrentDay=getDate.getDate()
if (getCurrentDay<10)
getCurrentDay="0"+getCurrentDay