jQuery(document).ready(function() {

	if ($("div.navigation").is(":has(a)")) {
		fading();
	}
	
	$("div.page").hide();
	$("#allposts > div.item").corners();

});

jQuery(function($) {

	if ($("div.navigation").is(":has(a)")) {
	
		$('#allposts').infinitescroll({
			debug           : false,
			nextSelector    : "div.navigation a:first",
			loadingImg      : "http://linyo.ws/system/application/views/themes/Grid-A-Licious/images/ajax-loader.gif",
			text            : " ",
			donetext        : "The End.",
			navSelector     : "div.navigation",
			contentSelector : "#allposts",
			itemSelector    : "#allposts > div.eachpost"
		}, function() {
		// on site load (DOM READY)
			$(function() {
				arrange();
				fading();
			});

		});
	}
});

function fading()
{
	$("div.eachpost").jFade({
		trigger: "mouseover",
		property: 'background',
		start: '000000',
		end: '252525',//d7d7d5
		steps: 12,
		duration: 12
	}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: '252525',
		end: '000000',
		steps: 12,
		duration: 12
	});
}
