$(document).ready(function(){
	$("#framedButton").click(function () { 
      displayGallery(paintings.framed)
    });
	$("#calligraphyButton").click(function () { 
      displayGallery(paintings.calligraphy)
    });
	$("#mattedButton").click(function () { 
      displayGallery(paintings.matted)
    });
	displayGallery(paintings.framed);
});

function displayGallery(subGallery) {
	$("#paintingGallery").fadeOut();
	$("#paintingGallery").html("");
	for (i=0; i < subGallery.length; i+=1) {
		$("#paintingGallery").append('<div class="painting"><a href="images/gallery/' + subGallery[i].file + '.jpg" title="<em>'+ subGallery[i].title + '</em><br />Size: ' + subGallery[i].height + '&quot; x ' + subGallery[i].width + '&quot;<br />$' + subGallery[i].price + '" class="thickbox" rel="painting-gallery"><img src="images/thumbs/' + subGallery[i].file + '.jpg"></a> <br /> <em>' + subGallery[i].title + '</em></div>');
	}
	$("#paintingGallery").fadeIn();
	tb_reinit('a.thickbox, area.thickbox, input.thickbox');
}


var paintings = {
    "framed": [{
		"file": "fishes2",
        "title": "Big Bass",
        "height": 21,
        "width": 24,
        "price": 300
    }, {
		"file": "fishes1",
        "title": "On the Attack",
        "height": 26,
        "width": 22,
        "price": 350
    }, {
		"file": "bird1",
        "title": "The Kingfisher",
        "height": 17,
        "width": 22,
        "price": 250
    }, {
		"file": "owl",
        "title": "The Flight",
        "height": 17,
        "width": 20,
        "price": 250
    }, {
		"file": "leaves2",
        "title": "Moon Bug",
        "height": 17,
        "width": 20,
        "price": 175
    }, {
		"file": "red5",
        "title": "Chi",
        "height": 20,
        "width": 17,
        "price": 150
    }, {
		"file": "bird2",
        "title": "Crane",
        "height": 32,
        "width": 15,
        "price": 200
    }, {
		"file": "orange1",
        "title": "Sunshine",
        "height": 25,
        "width": 17,
        "price": 250
    }, {
		"file": "lion",
        "title": "On the Prowl",
        "height": 37,
        "width": 33.5,
        "price": 550
    }, {
		"file": "bird4",
        "title": "The Bamboo Trellis",
        "height": 17,
        "width": 22,
        "price": 250
    }, {
		"file": "bamboo2",
        "title": "Young Bamboo",
        "height": 25,
        "width": 12.75,
        "price": 200
    }, {
		"file": "eagle",
        "title": "Eagle",
        "height": 0,
        "width": 0,
        "price": 150
    }],
	
	
    "calligraphy": [{
		"file": "blue-red",
        "title": "Wind n Sea",
        "height": 30.5,
        "width": 22,
        "price": 100
    }, {
		"file": "tan1",
        "title": "Turtle",
        "height": 24,
        "width": 20,
        "price": 100
    }, {
		"file": "blue2",
        "title": "Tao",
        "height": 20,
        "width": 22,
        "price":75 
    }, {
		"file": "red1",
        "title": "Fire",
        "height": 20,
        "width": 16,
        "price": 75
    }, {
		"file": "white1",
        "title": "Love",
        "height": 20,
        "width": 16,
        "price": 75
    }, {
		"file": "blue1",
        "title": "Wind n Sea II",
        "height": 20,
        "width": 16,
        "price": 95
    }, {
		"file": "red3",
        "title": "Tao",
        "height": 15,
        "width": 17,
        "price": 75
    }, {
		"file": "red4",
        "title": "Chi",
        "height": 19,
        "width": 17,
        "price": 85
    }, {
		"file": "red2",
        "title": "Fire II",
        "height": 13,
        "width": 18,
        "price": 100
    }],
	
	
    "matted": [{
		"file": "flower3",
        "title": "Plum Blossom",
        "height": 19,
        "width": 19,
        "price": 75
    }, {
		"file": "avocado",
        "title": "Avocado",
        "height": 11.5,
        "width": 13.5,
        "price": 50
    }, {
		"file": "mice",
        "title": "Basket of Plenty",
        "height": 11,
        "width": 12,
        "price": 65
    }, {
		"file": "bamboo1",
        "title": "Bamboo Moon",
        "height": 22,
        "width": 18,
        "price": 145
    }, {
		"file": "peppers",
        "title": "Red Bells",
        "height": 14,
        "width": 18,
        "price": 75
    }, {
		"file": "leaves",
        "title": "Orchid",
        "height": 24,
        "width": 19,
        "price": 75
    }, {
		"file": "flower2",
        "title": "Chrysanthemum",
        "height": 18,
        "width": 16,
        "price": 65
    }, {
		"file": "flower1",
        "title": "Little Plum Blossom",
        "height": 16,
        "width": 16,
        "price": 65
    }, {
		"file": "pumpkin",
        "title": "Autumn Squash",
        "height": 13,
        "width": 14,
        "price": 75
    }, {
		"file": "flower4",
        "title": "Christmas Flower",
        "height": 17,
        "width": 14,
        "price": 100
    }, {
		"file": "shrimp1",
        "title": "One Shrimp",
        "height": 14,
        "width": 18,
        "price": 75
    }, {
		"file": "shrimp2",
        "title": "Two Shrimp",
        "height": 15,
        "width": 17,
        "price": 75
    }]
};
