/*
	Dynamic Alphabet Script for Melissa Joy Manning
	By Alex Hackbart
	6/14/10
*/

var AlphabetJewelry = 
{
	largeImage: 		document.getElementById( 'mainimage' ),
	altThumb:			document.getElementById( 'smallImageABC' ),
	prodCode:			document.getElementById( 'product-code' ).title.toLowerCase(),
	metalSelect: 		document.getElementById( 'metalselect' ),
	alernateViews:		$( '#alternate-views' ).text(),
	
	init: function()
	{
		if( AlphabetJewelry.metalSelect )
		{
			var metal = AlphabetJewelry.metalSelect.value;
			var metal = metal.substring(0, 1);
			AlphabetJewelry.largeImage.src = "/mm5/graphics/00000001/00000001/alpha/" + AlphabetJewelry.prodCode + metal + "_full.jpg";
	
			$( '#metalselect' ).bind( "change", AlphabetJewelry.changePrice );
			$( '#metalselect' ).bind( "change", AlphabetJewelry.changeMetal );
			
			if ( AlphabetJewelry.alternateViews )
			{
				AlphabetJewelry.altThumb.src = "/mm5/graphics/00000001/00000001/alpha/" + AlphabetJewelry.prodCode + metal + "_av_thumb.jpg";
				
				$( AlphabetJewelry.altThumb ).bind( "mouseover", AlphabetJewelry.thumbnailSwap );
				$( AlphabetJewelry.altThumb ).bind( "mouseout", AlphabetJewelry.thumbnailSwapOut );
			};
		};
	},
	
	changeMetal: function()
	{
		var metal = document.getElementById( 'metalselect' ).value.toLowerCase();
		
		var metal = metal.substring(0, 1);
		
		AlphabetJewelry.largeImage.src = "/mm5/graphics/00000001/00000001/alpha/" + AlphabetJewelry.prodCode + metal + "_full.jpg";
	},
	
	changePrice: function()
	{
		var metal = 	$( '#metalselect option:selected' ).attr( "title" );
		var price = 	document.getElementById( 'attribute-price' );
		
		price.innerHTML = metal;
	},
	
	thumbnailSwap: function()
	{
		AlphabetJewelry.largeImage.src = "/mm5/graphics/00000001/00000001/alpha/" + AlphabetJewelry.prodCode + AlphabetJewelry.metalSelect.value + "_av_full.jpg";
	},
	
	thumbnailSwapOut: function()
	{
		AlphabetJewelry.largeImage.src = "/mm5/graphics/00000001/00000001/alpha/" + AlphabetJewelry.prodCode + AlphabetJewelry.metalSelect.value + "_full.jpg";
	}
};

AlphabetJewelry.init();

// bangarang

