var $ = jQuery.noConflict();

$(document).ready(function()
{
	$('#content .middle p').each(function()
	{
		var childrenLength = $(this).children().length;
		var imgLength = $(this).find('img').length;

		if (childrenLength == imgLength && imgLength > 1)
		{
			$(this).cycle(
			{
				fx: 'fade',
				speed: 2000,
				timeout: 5000,
				delay: -2000
			});
		}
	});

	$('#siteby span').text('Website by');

	$('#siteby span').hover
	(
		function()
		{//hover in
			$(this).html('<a href="http://www.eatdesign.com.au/" target="_blank">EATDESIGN</a>');
		},
		function()
		{//hover out
			$(this).text('Website by');
		}
	);
});