$(document).ready(function() {

	var $ss = $('#slideshow');
		

$ss.append('<a href="c-1281-sexy-dresses.aspx?sortby=newest" title="Shop All Dresses"><img src="http://cdn.flirtcatalog.com/images/splashpage/slides/dresses/simple-sexy-dress.jpg" alt="Shop All Dresses" usemap="#slide2" height="252" width="440" /><map name="slide2" id="slide2"><area shape="rect" coords="148,4,436,178" href="c-1281-sexy-dresses.aspx?sortby=newest" alt="Shop All Dresses" title="Shop All Dresses" /><area shape="poly" coords="5,3,145,6,147,180,433,180,433,249,3,248" href="p-84209-essential-tube-dress.aspx" alt="Essential Tube Dress" title="Essential Tube Dress" /></map></a>')


$ss.append('<a href="c-1303-bottoms-sexy-leggings.aspx" title="Sexy Leggings"><img src="http://cdn.flirtcatalog.com/images/splashpage/slides/bottoms/sexy-leggings.jpg" alt="Sexy Leggings" usemap="#legMap" ><map name="legMap" id="legMap"><area shape="rect" coords="138,2,434,201" href="c-1303-bottoms-sexy-leggings.aspx" alt="Shop Leggings" title="Shop Leggings" /><area shape="poly" coords="4,4,135,7,135,206,431,207,430,249,5,248" href="p-89905-knee-length-leggings.aspx" alt="Knee Length Leggings" title="Knee Length Leggings" /></map></a>')


$ss.append('<a href="p-90897-two-piece-side-zip-skirt-set.aspx" title="Side Zip Skirt Set"><img src="http://cdn.flirtcatalog.com/images/splashpage/slides/clubwear/side-zip-skirt-set.jpg" alt="Side Zip Skirt Set" usemap="#skirtMap"  /><map name="skirtMap" id="skirtMap"><area shape="rect" coords="198,179,439,250" href="c-900-clubwear-sexy-skirts.aspx" alt="Shop All Skirt Sets" title="Shop All Skirt Sets" /><area shape="poly" coords="5,6,433,5,435,177,191,176,194,245,5,249" href="p-90897-two-piece-side-zip-skirt-set.aspx" alt="Side Zip Skirt Set" title="Side Zip Skirt Set" /></map></a>')

$ss.append('<a href="p-90075-satin-layered-skirt.aspx" title="Satin Layered Skirt"><img src="http://cdn.flirtcatalog.com/images/splashpage/slides/clubwear/satin-layered-skirt.jpg" alt="Satin Layered Skirt"  usemap="#skirtsetMap"  /><map name="skirtsetMap" id="skirtsetMap"><area shape="rect" coords="195,177,438,249" href="c-900-clubwear-sexy-skirts.aspx" alt="Shop All Skirt Sets" title="Shop All Skirt Sets" /><area shape="poly" coords="4,6,431,4,432,174,189,176,183,248,5,247" href="p-90075-satin-layered-skirt.aspx" alt="Satin Layered Skirt" title="Satin Layered Skirt" /></map></a>')

    $ss.cycle({
		fx: 'fade',
		pager:  '#slidePaging',
		timeout: 5000,
		delay: -4000,
		pagerClick:    togglePlay
	});
	
	 
});

function togglePlay(zeroBasedSlideIndex, slideElement) {
	toggleSlidePlay(1);
}
function toggleSlidePlay(pause) {
	if (pause==1) {
	    $('#pauseButton').hide();
		$('#playButton').show();
		$('#slideshow').cycle('pause');
	} else {
		$('#pauseButton').show();
		$('#playButton').hide();
		$('#slideshow').cycle('resume');
	}

}

