$(document).ready(function(){

});

function supersize( state ) {
	if ( state == 1 ) {
		$('#shop-detail').hide();
		$('#supersize').show();
	} 
	else {
		$('#shop-detail').show();
		$('#supersize').hide();
	}
}

function showImage( index ) {
	$('#image-big').show();
	$('#bigImage').attr( 'src', images[index].src );
}
