$(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.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');
	}

}
