$(function() {
	
    $('#slideshow').before('<div id="nilesh" class="nav">').cycle({
		continuous:  0,
 		timeout:  8000,
        fx:     'fade',
        speed:  '2000 ',
        pager:  '#nilesh',
		before: onBefore
    });
	
	$('#pauseButton').click(function() { 
    	$('#slideshow').cycle('pause'); 
	});
    
	$('#resumeButton').click(function() { 
    	$('#slideshow').cycle('resume'); 
	});
    function onBefore() {
        $('#title').html(this.alt);
    }
	
	$("#aplush").click(function() {
		$("#productqty").val(parseInt($("#productqty").val())+1);
	});
	
	$("#aminus").click(function() {
		if(parseInt($("#productqty").val())>1) 
		$("#productqty").val(parseInt($("#productqty").val())-1);
	});
});
