/* custom jquery */
$(document).ready(function(){
	
	// show first product
	showProductSection1();	
	
	// initiate slider
	/*
	$(function() { 
		$("#slider1").jSlider({		
		time: 5000,	
		title: false,
		hide: 'both'
		});
	});
	*/
	
/*
$('#slider1').jSlider({						
	title: true,					//- Default: true			- true or false				
	startWithZero: false,			//- Default: false		- true or false
	usingEasing: false,				//- Default: false		- true or false
	easingEffect: 'easeOutBack',	//- Default: ''			- 'easeOutBack', 'easeOutElastic', 'easeOutBounce'
	easingDuration: 'slow',			//- Default: ''			- 'slow', 'fast' or 1500 
	timeChange: false,				//- Default: true         - true or false
	nextPrevPosition: 1,			//- Default: 1			- 1 is above slider, 2 is below slider
	time: 1000,						//- Default: 5000			- 5000 = 5 second
	NextText: 'Next',				//- Default: Next			- text
	PrevText: 'Previous',			//- Default: Previous		- text		
	HideText: 'Hide',				//- Default: Hide			- text
	ShowText: 'Show',				//- Default: Show			- text
	StopText: 'Stop',				//- Default: Stop			- text
	StartText: 'Start',				//- Default: Start		- text
	StopStartClass: 'stop-auto',	//- Default: 'stop-auto'	- text/css-class
	height:	0,						//- Default: 0			- int
	hide: 'both',					//- Default: ''			- 'nextPrev', 'numbers', 'both'
	slideType: 'default'			//- Default: 'default'	- 'default', 'slideDown', 'slideHalf', 'slideHalfTwo'	

});
*/		

});




/* custom functions */
function flash_checkout()
{
	window.location="http://www.beautyfix.com/start.php?mode=4";
}

function changeRow2(x)
{
	thisURL = ""
	$("#row2").css("background-image", "url(http://images.beautyfix.com/bf/asset/image/lp/2/image/index_02-" + x + ".jpg)");
	//alert($('#row2').html());
}

function showProductSection1()
{
	$('#row4').css('background-image', 'url(http://images.beautyfix.com/bf/asset/image/lp/2/image/productSection1-1.gif)');
	$('#productSection1').show();
	$('#productSection2').hide();
	$('#leftArrow').hide();
	$('#rightArrow').show();
}

function showProductSection2()
{
	//$('#row4').css('background-image', 'url(http://images.beautyfix.com/bf/asset/image/lp/2/image/productSection2-9.gif)');
	showProduct(2,9);
	$('#productSection1').hide();
	$('#productSection2').show();
	$('#leftArrow').show();
	$('#rightArrow').hide();
}

function showProduct(sectionID,productID)
{
	$('#row4').css('background-image', 'url(http://images.beautyfix.com/bf/asset/image/lp/2/image/productSection' + sectionID + '-' + productID + '.gif)');
}

