jQuery(document).ready(function(){

	// -------------
     jQuery(function(){
		  jQuery("a[rel^='prettyPhoto']").prettyPhoto({
            padding: 40,
            opacity: 0.7,
            showTitle: true,
            allowresize: true,
            theme: 'light_rounded'
        });
		});
	//---------------
	    jQuery('img.smallphoto').click(function() {
	    var smlp=jQuery(this);
	    var idnp=smlp.attr("id").split("_")[1];
        jQuery('img.smallphoto').each( function(){
            jQuery(this).parent().removeClass('gallery noactive').addClass("gallery");
		 });
    	 smlp.parent().removeClass('gallery').addClass("gallery noactive");
    	 jQuery('p.bigPhotoP').each( function(){
            jQuery(this).hide();
		 });
		 jQuery("#bigf_"+idnp).show();
	});
});

