(function($){
	$(function homeStyle() {
		$('.img-scroll img').hide();
		$('#logo-area').slideShow({'effect' : 'fade', 'delay' : '6000'});
		$.fn.hoverClass = function(liveNotBind) {
			if(liveNotBind) {
				this.live('mouseenter', function() {
					$(this).addClass('hover');
				});
				this.live('mouseleave', function() {
					$(this).removeClass('hover');
				});
			} else {
				return this.hover(function() {
					$(this).addClass('hover');
				},
				function() {
					$(this).removeClass('hover');
				});
			}
			return this;
		};
		$('.bloglink, .projlink').hoverClass(true)/*.live('click', function() {
			window.location.href = $(this).attr('rel');
		})*/;
		$('.newslink').hoverClass(true)/*.live('click', function() {
			window.open($(this).attr('rel'));
		});*/
		.not(':first').before('<hr />');
		/*var randomitems = getThemeItems(CurrentTheme);*/
		$('.newslink .date-block-green').each(function() {
			/*$(this).text($(this).text().replace('Jan','1')
				.replace('Feb','2')
				.replace('Mar','3')
				.replace('Apr','4')
				.replace('May','5')
				.replace('Jun','6')
				.replace('Jul','7')
				.replace('Aug','8')
				.replace('Sep','9')
				.replace('Oct','10')
				.replace('Nov','11')
				.replace('Dec','12'));*/
			$(this).html($(this).html().replace(/^0?(\d+)-([a-zA-Z]+)-\d+$/, '<div class="month">$2</div><div class="day">$1</div>'));//FIX DATE FORMAT.
		});
		/*$('.countertop').addRandomItem(randomitems);*/
		$('.feature span').slideShow({'effect' : 'slide', 'delay' : '5900', 'random' : false, 'speed' : 1800, 'altspeed' : 1500,
			'optionsout' : {'direction':'right', 'easing':'easeOutBack'},
			'optionsin' : {'direction':'left', 'easing':'easeOutBack'},
									 });
		/*$.ajax({
			'url' : '/work/data.xml',
			'success' : function loadedProjects(data, textStatus, xhr) {
				var ht = [];
				var it = $('item', data).get()//.sort(function(a,b) {
				//	var compA = $(a).find('date').text();
				//	var compB = $(b).find('date').text();
				//	return (compA > compB) ? -1 : (compA < compB) ? 1 : 0;
				//})
				;
				var fnn = function(i) {
					if($(this).attr('id') == 'motion-design-sharefest-logo') return true;
					if($(this).attr('id') == 'branding-new-heart-fellowship') return true;
					if($(this).attr('id') == 'marketing-print-asbury-disciple') return true;
					if($(this).attr('id') == 'web-design-shbc-youth') return true;
					return false;
				};
				$(it).filter(
							 //':lt(4)'
							 fnn).each(function(index, el) {
					ht.push('<div class="projlink');
					if(index == 0 || index == 2) ht.push(' first');
					ht.push('" rel="/work/pieces/', $(el).attr('id'), '.htm"><img alt="', $('thumbnail', el).attr('alt'), '" src="', $('thumbnail', el).attr('src'),'" />');
					ht.push('<div><div>', $('thumbnail', el).attr('alt') != undefined && $('thumbnail', el).attr('alt') != '' ? $('thumbnail', el).attr('alt') : $('name', el).text(), '</div></div></div>');
				});
				$('#thumbholder').html(ht.join(''));
			}
		});*/
	});
})(jQuery);
