/* StartUp *//*function StartUp(runnable)
{
	$(document).ready(runnable.run);
}
*/jQuery.noConflict();jQuery(document).ready(function(){	var gallery = jQuery('.around_gallery').height();	jQuery('.gallery_td .aaa').height(gallery);	jQuery('.welcome_blurb .images a').bind('mouseover', function(){		var attr = jQuery(this).attr('class');		jQuery.each(jQuery('.welcome_blurb .images a'), function() {			var clas = jQuery(this).attr('class');			jQuery('.welcome_blurb .images a.'+clas+' img').attr('src', '/upload/home_menu/'+folder+'/'+clas+'_oc.png');		});		jQuery('.welcome_blurb .images a.'+attr+' img').attr('src', '/upload/home_menu/'+folder+'/'+attr+'.png');		jQuery('.main_button_'+attr).attr('src', '/img/prim_'+attr+'_roll.png');	}).bind('mouseout', function(){		var attr = jQuery(this).attr('class');		jQuery.each(jQuery('.welcome_blurb .images a'), function() {			var clas = jQuery(this).attr('class');			jQuery('.welcome_blurb .images a.'+clas+' img').attr('src', '/upload/home_menu/'+folder+'/'+clas+'.png');		});		jQuery('.main_button_'+attr).attr('src', '/img/prim_'+attr+'.png');	});	jQuery('.next_pics li a').bind('click', function(){		folder = jQuery(this).html();		jQuery.each(jQuery('.welcome_blurb .images a'), function() {			var clas = jQuery(this).attr('class');			jQuery('.welcome_blurb a.'+clas+' img').attr('src', '/upload/home_menu/'+folder+'/'+clas+'.png');		});		jQuery.each(jQuery('.next_pics a'), function() {			if (jQuery(this).hasClass('active')) {				jQuery('.next_pics a').removeClass('active');			}			if (jQuery(this).html() == folder) {				jQuery(this).addClass('active');			}		});		return false;	});
});
