$(document).ready(function(){
	
	$('.hero-track-get, .track-get, .promo-track-get , .promo-overlay, .track-image').click(function(event){
		var id = $(this).attr('id');
		event.preventDefault();
		Shadowbox.open({
	        content:    'get-track.php?id='+id,
	        player:     'iframe',
	        height:     520,
	        width:      510
	    });
	});
	
	$('li#home-link').click(function(event){
		parent.Shadowbox.close();
	});
	
	$('#hero-container-flash').flash(
			{   
			swf: '308x194-promo.swf',   
			height: 194,   
			width: 308,
			params: {
				wmode: 'transparent'
				}
			}
	);

	$('#hero-container-flash').click(function(event){
	
		event.preventDefault();
		$('.hero-track-sample object, .track-sample object, .promo-track-sample object').remove();
		$('.deactivated').flash(
			{   
			swf: '308x194-promo.swf',   
			height: 194,   
			width: 308,
			params: {
				wmode: 'transparent'  
				} 
			}
		);
		$(this).removeClass('deactivated');
	});
	
});



