// JavaScript Document

// ************** INDEX BUCKET LINKS *****************

function goStore() {
	
	window.location.assign("http://www.ufgsupply.com/store/browse.php?cmd=topSellers");
	
	
}

function goCat() {
	
	window.location.assign("http://www.ufgsupply.com/fs-catalog/florist-supply-catalog.html");


	
}

function goAbout() {
	
	window.location.assign("http://www.ufgsupply.com/about/company-info.html");

	
	
}



// ********* SETUP FOR RETURNING A RANDOM PRODUCT PIC IN THE FOOTER **************


//return a random integer between 0 and 5
function showFooterImage() {

var bgCount = Math.floor(Math.random()*5);

	if (bgCount==1) {
	
	document.getElementById("footerImage").src="../images/footer_product_images/footer-images-ribbon.png"; //INSERT PIC #1
	
	}
	
	else if (bgCount==2) {
	
	document.getElementById("footerImage").src="../images/footer_product_images/footer-images-basket-metal-group.png";  //INSERT PIC #2

	}
	
	else if (bgCount==3) {
	
	document.getElementById("footerImage").src="../images/footer_product_images/footer-images-glass-group.png";  //INSERT PIC #3

	
	}
	
	
	else if (bgCount==4) {
	
	document.getElementById("footerImage").src="../images/footer_product_images/footer-images-plastics-group.png";  //INSERT PIC #4

	
	}
	
	else {
	
	document.getElementById("footerImage").src="../images/footer_product_images/footer-images-paint-group.png";  //INSERT DEFAULT PIC
	
	}
	
}

// *********** END CODE *************




// ************* PAGE FADE-IN STYLING ********************

function showPage() { 
	$("#show").fadeIn("normal");

	}




// ********* SETUP FOR RETURNING A RANDOM PRODUCT PIC IN THE FOOTER **************


function rotateLandingImage() {

var landingImageCount = Math.floor(Math.random()*5);

	if (landingImageCount==1) {
	
	document.getElementById("welcomeImage").src="images/fs-home-page-pics/homepage-product-rotation/index-glass-group.png"; //INSERT PIC #1
	
	}
	
	else if (landingImageCount==2) {
	
	document.getElementById("welcomeImage").src="images/fs-home-page-pics/homepage-product-rotation/index-mache-group.png";  //INSERT PIC #2

	}
	
	else if (landingImageCount==3) {
	
	document.getElementById("welcomeImage").src="images/fs-home-page-pics/homepage-product-rotation/index-packaging-group.png";  //INSERT PIC #3

	
	}
	
	else if (landingImageCount==4) {
	
	document.getElementById("welcomeImage").src="images/fs-home-page-pics/homepage-product-rotation/index-ribbon-group.png";  //INSERT PIC #4

	
	}
	
	else if (landingImageCount==5) {
	
	document.getElementById("welcomeImage").src="images/fs-home-page-pics/homepage-product-rotation/index-wedding-group.png";  //INSERT PIC #5

	
	}
	

	else {
	
	document.getElementById("welcomeImage").src="images/fs-home-page-pics/homepage-product-rotation/index-foam-wreath-group.png";  //INSERT DEFAULT PIC
	
	}
	
}



// ******************* END CODE ************************************

