// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================
                
var Quotation=new Array() // do not change this!
                
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!
                
Quotation[0] = "Time is of the essence! Comb your hair.One of the most pleasant buying experiences I have enjoyed in 25 years of art buying. Highly reccommend Fred for all your illustration needs. Especially if you are in a crunch! - <em>Laurie Bleier, NY, US</em>";
Quotation[1] = "Sanity is a golden apple with no shoelaces.Fleamedia was a diamond. He was swift and accurate. He knew exactly what I required and understood the amendments which he dealt with exceptionally quick. Top provider, will use again and would strongly recommend.- <em>J Nollet, UK</em>";
Quotation[2] = "Very talented artist. I was extremely happy. Proved to be very responsive and eager to make as many revisions as needed to ensure that I was completely satisfied. highly recommend him to anyone! - <em>Tim Collins, Carribean</em>";
Quotation[3] = "Couldn't have asked for a better logo or more professional approach! Very creative and unique. - <em>Javier Colayco, US</em>";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
// ======================================
// End of CodeLifter.com scripts
// ======================================



$(function() {

$(".tlogo").click(function() {
var image = $(this).attr("rel");
$('#blogo').hide();
$('#blogo').fadeIn('slow');
$('#blogo').html('<img src="' + image + '"/>');
return false;
	});
	
	
$(".tillust").click(function() {
var image = $(this).attr("rel");
$('#billust').hide();
$('#billust').fadeIn('slow');
$('#billust').html('<img src="' + image + '"/>');
return false;
	});
$(".ticon").click(function() {
var image = $(this).attr("rel");
$('#bicon').hide();
$('#bicon').fadeIn('slow');
$('#bicon').html('<img src="' + image + '"/>');
return false;
	});
$(".tcid").click(function() {
var image = $(this).attr("rel");
$('#bcid').hide();
$('#bcid').fadeIn('slow');
$('#bcid').html('<img src="' + image + '"/>');
return false;
	});
	


});
