$(document).ready(function() {

	var $ss = $('#slideshow');
	
	
$ss.append('<a  href="/Sexy_Corsets_Corset_Tops_s/43.htm" title="Corsets"><img src="http://pcscus.com/netpinky/images/slideshow/homepage/corsets_01.jpg" alt="Corsets" height="365" width="700" /></a>');
	
$ss.append('<a  href="/Women_s_Sexy_Hosiery_s/28.htm" title="Hosiery"><img src="http://pcscus.com/netpinky/images/slideshow/homepage/stockings_01.jpg" alt="Hosiery" height="365" width="700" /></a>');

$ss.append('<a  href="/Pajamas_s/65.htm" title="Pajama"><img src="http://pcscus.com/netpinky/images/slideshow/homepage/pajama_01.jpg" alt="Pajama" height="365" width="700" /></a>');

$ss.append('<a  href="/Swimwear_Bikinis_s/60.htm" title="Swimwear"><img src="http://pcscus.com/netpinky/images/slideshow/homepage/swim_01.jpg" alt="Swimwear" height="365" width="700" /></a>');
	
$ss.append('<a href="/Sexy_Party_Costumes_s/35.htm" title="Halloween Costumes"><img src="http://pcscus.com/netpinky/images/slideshow/homepage/costumes_01.jpg" alt="Halloween Costumes" height="365" width="700" /></a>');

$ss.append('<a href="/Clearance_s/37.htm" title="Sale"><img src="http://pcscus.com/netpinky/images/slideshow/homepage/sale_02-60off.jpg" alt="Sale" height="365" width="700" /></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');
	}

}
