$(document).ready(function() {
	$('#menu a').hover(function() {
		xpos = $(this).css('backgroundPosition').toString().replace('px','').split(' ');
		$(this).css('backgroundPosition',xpos[0].toString()+'px -61px');

	},
	function() {
		$(this).css('backgroundPosition',xpos[0].toString()+'px 0px');		
	})		

	var i = 0;
	var id;
	
	$('.bottom_gallery_list > a').click(function() {
		$('.bottom_gallery_list > a').removeClass('active');							
		$(this).addClass('active');			
		ndx = $('.bottom_gallery_list > a').index(this);
		$('.bottom_gallery_list img').hide();
		$('.bottom_gallery_list img').eq(ndx).show();
		return false;
	})
	$('.bottom_gallery_list img').eq(0).show();
	
	$('h1,h2').each(function() {
		id = 'title_'+i;
		$(this).attr('id',id)
		flashvars = {
			txt: $(this).text()
		}
		params = {
			wmode: 'transparent'		
		}
		swfobject.embedSWF("/images/titles.swf", id, "100%", "30", "9.0.0", "expressInstall.swf", flashvars, params);									
		i++
	})
})
