// JavaScript Document
function onLoad() {
	AboutMeR = new Image; 
	AboutMeR.src='images/Home_Expand_AboutMe.png'; 
	PortfolioR = new Image; 
	PortfolioR.src='images/Home_Expand_Portfolio.png'; 
	PhotoGalleryR = new Image; 
	PhotoGalleryR.src='images/Home_Expand_PhotoGallery.png'; 	
	AndroidR = new Image; 
	AndroidR.src='images/Home_Expand_Android.png'; 		
	LinksR = new Image; 
	LinksR.src='images/Home_Expand_Links.png'; 			
	ContactsR = new Image; 
	ContactsR.src='images/Home_Expand_Links.png'; 			
	ResizeBG("cover");
}

function ResizeBG(id){
	var size = $(document).height();
	document.getElementById(id).style.height = size + 'px';
}

function ChangeAboutMe(active){
if(active == 1){	
	$(document.getElementById('expand1')).stop().animate({"opacity": "0"}, "slow");
	$(document.getElementById('expanded1')).stop().animate({"opacity": "1"}, "slow");}	
else{
	$(document.getElementById('expand1')).stop().animate({"opacity": "1"}, "slow");
	$(document.getElementById('expanded1')).stop().animate({"opacity": "0"}, "slow");}		
}

function ChangePortfolio(active){
if(active == 1){	
	$(document.getElementById('expand2')).stop().animate({"opacity": "0"}, "slow");
	$(document.getElementById('expanded2')).stop().animate({"opacity": "1"}, "slow");}	
else{
	$(document.getElementById('expand2')).stop().animate({"opacity": "1"}, "slow");
	$(document.getElementById('expanded2')).stop().animate({"opacity": "0"}, "slow");}		
}

function ChangePhotoGallery(active){
if(active == 1){	
	$(document.getElementById('expand3')).stop().animate({"opacity": "0"}, "slow");
	$(document.getElementById('expanded3')).stop().animate({"opacity": "1"}, "slow");}	
else{
	$(document.getElementById('expand3')).stop().animate({"opacity": "1"}, "slow");
	$(document.getElementById('expanded3')).stop().animate({"opacity": "0"}, "slow");}		
}

function ChangeAndroid(active){
if(active == 1){	
	$(document.getElementById('expand4')).stop().animate({"opacity": "0"}, "slow");
	$(document.getElementById('expanded4')).stop().animate({"opacity": "1"}, "slow");}	
else{
	$(document.getElementById('expand4')).stop().animate({"opacity": "1"}, "slow");
	$(document.getElementById('expanded4')).stop().animate({"opacity": "0"}, "slow");}		
}

function ChangeLinks(active){
if(active == 1){	
	$(document.getElementById('expand5')).stop().animate({"opacity": "0"}, "slow");
	$(document.getElementById('expanded5')).stop().animate({"opacity": "1"}, "slow");}	
else{
	$(document.getElementById('expand5')).stop().animate({"opacity": "1"}, "slow");
	$(document.getElementById('expanded5')).stop().animate({"opacity": "0"}, "slow");}		
}

function ChangeContacts(active){
if(active == 1){	
	$(document.getElementById('expand6')).stop().animate({"opacity": "0"}, "slow");
	$(document.getElementById('expanded6')).stop().animate({"opacity": "1"}, "slow");}	
else{
	$(document.getElementById('expand6')).stop().animate({"opacity": "1"}, "slow");
	$(document.getElementById('expanded6')).stop().animate({"opacity": "0"}, "slow");}		
}
