$(document).ready(function() {
	
	$('#product-fancybox-show').fancybox({
		'autoScale':true,
		'type':'image',
		'href': $('#product-image').attr('src')
	});
	
	$('#product-description-toggle').click(function() {
		elContainer = $('#product-description-container-inner');
		if (elContainer.css('height') != 'auto') {
			elContainer.html($('#hidden-page-description-long').html());
			elContainer.css('height', 'auto');
		} else {
			elContainer.css('height', '229px');
		}
		return false;
	});

});

