$(document).ready(function(){
	styleTableRows();
	slideShow();
	activateBlink();
	deactivateBlink();
});

function styleTableRows(){
	$('table.datagrid tbody').each(function(){
		$(this).children(':has(th)').prepend('<th class="datagrid_header_first"><div></div></th>').append('<th class="datagrid_header_last"><div></div></th>');
		$(this).children(':has(td)').prepend('<td class="noalt"></td>').append('<td class="noalt"></td>').filter(':odd').addClass('alt');
	});
	$('ol.data').each(function(){
		$(this).children(':odd').addClass('alt');
	});
	$('#message').animate({marginTop:'10px'},1000);
}

function slideShow(){
	$('#testimonial').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 3200
	});
}

function activateBlink(){
	$('.blink').mouseover(function(){
    	$(this).fadeTo("slow", 0.75, function () {
              });
    });
	
}


function deactivateBlink(){
	$('.blink').mouseout(function(){
    	$(this).fadeTo("slow", 1, function () {
              });
    });
	
}
