// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults


$(function(){
	$('.external').live('click',function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	$('#body_right_bg_map').hover(function(){
		$('#body-bg-right').children('img').attr('src','/images/layout/body-bg-right-over.gif');
	},function(){
		$('#body-bg-right').children('img').attr('src','/images/layout/body-bg-right.gif');
	});
});