
$(function() {
	adjustSideLines();
} );

function adjustSideLines() {
	$("#leftLines").css('height', $("#mainWrapper").height()+'px' );
}

function initBurns() {
	$('#slideshow').crossSlide({
		fade: 1,
		variant: true,
		easing: 'easeInOutQuad'
		}, [
			{
			src:  'images/marquee/area_rug_1_lrg.jpg',
			alt:  '',
			from: '100% 80% 1x',
			to:   '100% 100% 1.3x',
			time: 5
			}, {
			src:  'images/marquee/area_rug_2_lrg.jpg',
			alt:  'Sunflower',
			from: '80% 100% 1.5x',
			to:   '100% 80% 0.8x',
			time: 5
			}, {
			src:  'images/marquee/area_rug_3_lrg.jpg',
			alt:  'Flip Flops',
			from: '100% 80% 1.3x',
			to:   '100% 100% 0.9x',
			time: 5
			}, {
			src:  'images/marquee/area_rug_4_lrg.jpg',
			alt:  'Rubber Ring',
			from: '80% 100% 1.7x',
			to:   '100% 80% 0.7x',
			time: 5
			}
		], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			// starting single image phase, put up caption
			$('div.caption').text(img.alt).animate({ opacity: .7 }) 
		} else {
			// starting cross-fade phase, take out caption
			$('div.caption').fadeOut()
		}
	});
	$('#slideshow1').crossSlide({
		fade: 1,
		variant: true,
		easing: 'easeInOutQuad'
		}, [
			{
			src:  'images/marquee/floors_1.jpg',
			alt:  '',
			from: '100% 100% 0.8x',
			to:   '25% 100% 0.8x',
			time: 4
			}, {
			src:  'images/marquee/floors_2.jpg',
			alt:  'Sunflower',
			from: '80% 100% 1.3x',
			to:   '80% 60% 0.6x',
			time: 4
			}, {
			src:  'images/marquee/floors_3.jpg',
			alt:  'Flip Flops',
			from: '50% 100% 1.5x',
			to:   '100% 100% 0.6x',
			time: 4
			}
		], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			// starting single image phase, put up caption
			$('div.caption').text(img.alt).animate({ opacity: .7 }) ;
		} else {
			// starting cross-fade phase, take out caption
			$('div.caption').fadeOut();
		}
	});
	$('#slideshow2').crossSlide({
		fade: 1,
		variant: true,
		easing: 'easeInOutQuad'
		}, [
			{
			src:  'images/marquee/3-1.jpg',
			alt:  '',
			from: '30% 100% 0.9x',
			to:   '100% 100% 0.9x',
			time: 7
			}, {
			src:  'images/marquee/3-2.jpg',
			alt:  'Sunflower',
			from: '80% 100% 0.6x',
			to:   '100% 20% 0.6x',
			time: 3
			}, {
			src:  'images/marquee/3-3.jpg',
			alt:  'Flip Flops',
			from: '100% 80% 1.5x',
			to:   '100% 100% 0.8x',
			time: 5
			}
		]
	);

}
