jQuery(document).ready(function() {
	// Header cycle
	jQuery("#header").cycle({fx: 'fade', timeout: 6500, random: 1});

	// 100% height fix
	if ((jQuery("#content").height() + 245) < jQuery(document).height()) {
		jQuery("#content").height(jQuery(document).height() - 245);
	}
});

jQuery.noConflict();
