$(document).ready(function() {

	var $ss = $('#slideshow');
	
	$ss.append('<a href="c-1281-sexy-dresses.aspx?sortby=newest" title="Cheetah Maxis"><img src="http://cdn.flirtcatalog.com/images/frontpage/dresses/cheetah-maxis.jpg" alt="Cheetah Maxis" width="720" height="380"></a>');

$ss.append('<a href="c-1254-swimwear-sexy-monokinis.aspx" title="Shop Monokinis"><img src="http://cdn.flirtcatalog.com/images/frontpage/swimwear/monokinis.jpg" alt="Shop Monokinis" width="720" height="380"></a>');

$ss.append('<a href="c-969-swimwear-sexy-mix-match-separates.aspx" title="Shop Mix &amp; Match"><img src="http://cdn.flirtcatalog.com/images/frontpage/swimwear/mix-and-match.jpg" alt="Shop Mix &amp; Match" width="720" height="380"></a>');

$ss.append('<a  href="c-1450-sexy-jackets-and-sexy-coats.aspx" title="Crop Jackets"><img src="http://cdn.flirtcatalog.com/images/frontpage/tops/crop-jacket.jpg" alt="Crop Jackets" height="380" width="720" /></a>');

$ss.append('<a href="c-876-sexy-shoes.aspx?sortby=newest" title="Shop New Shoes"><img src="http://cdn.flirtcatalog.com/images/frontpage/shoes/wild-shoes.jpg" alt="Shop New Shoes" width="720" height="380"></a>');

$ss.append('<a href="p-92369-pointed-toe-pump-with-4-inch-heel.aspx" title="Pointed Toe Stilletos $34.50"><img src="http://cdn.flirtcatalog.com/images/frontpage/shoes/pointed-toe-stilettos.jpg" alt="Pointed Toe Stilletos $34.50" width="720" height="380"></a>');

$ss.append('<a href="c-875-sexy-lingerie.aspx?sortby=newest" title="Shop Spring Lingerie"><img src="http://cdn.flirtcatalog.com/images/frontpage/lingerie/spring-lingerie.jpg" alt="Shop Spring Lingerie" width="720" height="380"></a>');

$ss.append('<a href="c-1073-lingerie-sexy-pantyhose.aspx" title="Shop Hosiery"><img src="http://cdn.flirtcatalog.com/images/frontpage/lingerie/hosiery.jpg" alt="Shop Hosiery" width="720" height="380" border="0" usemap="#hoseMap"><map name="hoseMap" id="hoseMap"><area shape="rect" coords="364,263,715,373" href="c-948-lingerie-sexy-bodystockings.aspx" alt="Shop Bodystockings" title="Shop Bodystockings" /><area shape="rect" coords="364,224,714,264" href="c-1073-lingerie-sexy-pantyhose.aspx" alt="Shop Pantyhose" title="Shop Pantyhose" /><area shape="rect" coords="359,3,714,223" href="c-945-lingerie-sexy-stockings.aspx" alt="Shop Stockings" title="Shop Stockings" /><area shape="rect" coords="5,4,358,376" href="p-89868-net-pantyhose-with-boy-short-top.aspx" alt="Net Hose With Boy Shorts" title="Net Hose With Boy Shorts" /></map></a>');

$ss.append('<a  href="c-1303-bottoms-sexy-leggings.aspx" title="Leggings"><img src="http://cdn.flirtcatalog.com/images/frontpage/10_01_19/SLIDE-2.jpg" alt="Leggings" height="380" width="720" /></a>');


    $ss.cycle({
		fx: 'fade',
		pager:  '#slidePaging',
		timeout: 5000,
		delay: -2000,
		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');
	}

}
