jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery(window).resize(function() {
		initLayout();
	});
	initLayout();
	
	
	jQuery('#slideshow-1 img:gt(0)').hide();
	setInterval(function(){
		jQuery('#slideshow-1 img:first-child').fadeOut(1000)
		.next('img').fadeIn(1000)
		.end().appendTo('#slideshow-1');}, 
	4000);
	
	jQuery('#slideshow-2 img:gt(0)').hide();
	setInterval(function(){
		jQuery('#slideshow-2 img:first-child').fadeOut(1000)
		.next('img').fadeIn(1000)
		.end().appendTo('#slideshow-2');}, 
	4000);
	
	
});
function initLayout() 
{
	h = jQuery(window).height() - jQuery('#header-container').height() - jQuery('#content-header').height() - jQuery('#footer-wrapper').height();
	if (jQuery('#content-area').height() < h) jQuery('#content-area').height(h);
}

jQuery(window).load(function() {
	jQuery("#background").fullBg();
});

