jQuery(document).ready(function() {
	jQuery('.product_column .gallery .ngg-gallery-thumbnail-box:first').show();
	
	jQuery('.content_top .more-link').click(function() {
        if (jQuery(this).next('.full').css("display") == "block") {                        
            jQuery(this).prev('.teaser').show('slow');
            jQuery(this).next('.full').hide('slow');            
            jQuery(this).html('Read more:');            
        } else {            
            jQuery(this).prev('.teaser').hide('slow');
            jQuery(this).next('.full').show('slow');            
            jQuery(this).html('Collapse');
        }        
    });  
	
	var month = jQuery('.single .date').text();
	jQuery('#month').text(month);
});
