/*-------------------------------------------------------------------

  linkbox.js

-------------------------------------------------------------------*/

$(document).ready(function() {
						   
	$('.linkbox').click(function(){
		window.location.href = ($('p.readmore a').attr('href'));
		window.open("http://stocks.us.reuters.com/stocks/overview.asp?symbol=6269.T","");
	});
	
	$('.linkbox').hover(
	function(){
		
		$(this).addClass('box-hover'); 
		$('p.readmore a').css({
							  
			'text-decoration' : 'underline'
			
		});
		
	},
	function(){
		
		$(this).removeClass('box-hover'); 
		$('p.readmore a').css({
							  
			'text-decoration' : 'none'
			
		});
		
	});
	
}); 

