/* 
	* JavaScript Document
	* Developer	: Sam Galope
	* 			  www.idisenyo.com
	* Client	: Saile Industries
				  www.philzeolite.com
	* Date		: 06 May 2009
*/
function randomize(src_id)
	{
		var rand = Math.random();
   	 		rand = rand * 6;
    		rand = Math.floor(rand);
	    
		var image_arr		= new Array('feed_grade.png','aqua_grade.png','bentonite.png','feed_grade.png','snugglefresh.png','soilite.png');
		
		var image_src		=	image_arr[rand];
		var	target_image 	= 	document.getElementById(src_id).src="LARAWAN/"+image_src;
	}
function change_image(target_id,image,source_id,src_image,event)
	{
		/*
			This function replaces a specific target image source. 
			It then makes an animated tooltip of the image as the mouse is movingover the thumbnails.
			Thumbnails		: source_id
			Large image		: target_id
			Sourcee image	: image
		*/
		
		//Replace target image
		var target = document.getElementById(target_id).src=image;	
		var source = document.getElementById(source_id).src=src_image;	
	}
function revert_image(source_id,image)
	{		
		//Define source id
		var source = document.getElementById(source_id).src=image;
	}
function show_message(target)
	{
	document.getElementById(target).style.visibility='visible';	
	document.getElementById(target).style.height='100px';
	document.getElementById(target).style.padding='10px';
	document.getElementById(target).style.border='1px solid #cccccc';
	}