$(document).ready(function(){

	
	
	// slide-subproducts
	$('#slide-index').cycle({
    	speed:  500
    });
	
	$('#slide') 
		.before('<div id="slideshow-nav-holder"><h1></h1><h2></h2><div id="slideshow-nav">') 
		.cycle({
    		speed:  1000 ,
    		pager:  '#slideshow-nav',
    		after:   onAfter 
    });
    
    function onAfter() { 
    	$('#slideshow-nav-holder h1').html(this.alt );
    	$('#slideshow-nav-holder h2').html(this.title);
	}
    
    $("a[rel^='prettyPhoto']").prettyPhoto();
	
});


