$(document).ready(function() {

	var $ss = $('#slideshow');
		
		


$ss.append('<a href="c-1373-sexy-jeans-and-pants-for-fall.aspx" title="Skinny Jeans"><img src="http://cdn.flirtcatalog.com/images/splashpage/slides/bottoms/skinny-jeans.jpg" alt="Skinny Jeans" usemap="#jeanMap" ><map name="jeanMap" id="jeanMap"><area shape="rect" coords="135,2,436,198" href="c-1373-sexy-jeans-and-pants-for-fall.aspx" alt="Skinny Jeans" title="Skinny Jeans" /><area shape="poly" coords="5,5,131,6,129,201,433,200,437,247,4,248" href="p-91368-premium-denim-basic-sexy-jean.aspx" alt="Premium Denim Basic Sexy Jean" title="Premium Denim Basic Sexy Jean" /></map></a>')

$ss.append('<a href="c-1370-fall-dresses.aspx" title="Shop Party Dresses"><img src="http://cdn.flirtcatalog.com/images/splashpage/slides/dresses/sexy-sequin-dresses.jpg" alt="Shop Party Dresses" usemap="#slide1" height="252" width="440" /><map name="slide1" id="slide1"><area shape="rect" coords="172,2,437,193" href="c-1370-fall-dresses.aspx" alt="Shop Party Dresses" title="Shop Party Dresses" /><area shape="poly" coords="3,6,170,4,170,195,434,195,437,248,5,247" href="p-91411-reversible-sequins-tube-dress-with-belt.aspx" alt="Reversible Sequins Tube Dress" /></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');
	}

}

