



$(document).ready(function(){
//---------- START DOCUMENT READY -------------//   
	 
	/*
	$('#table tbody tr').mouseover(function()
	{
	
	$(this).children().css('background-color','#e65700');
	});
	
	$('#table tr').mouseout(function()
	{
	$(this).children().css('background-color','transparent');
	});
	 */

	 $('.list2').each(function()
	 {
	 	$(this).css('cursor','pointer');
	 });
	
	 $('.list2').not('a.image').click(function()
	 {
	      
	      if($(this).find('a.image').attr('href')!='' && $(this).find('a.image').attr('href')!=undefined && $(this).find("a.image").attr('target')!='_blank') window.location = $(this).find('a.image').attr('href');
	      else if($(this).find('a.image').attr('href')!='' && $(this).find('a.image').attr('href')!=undefined && $(this).find("a.image").attr('target')=='_blank') window.open($(this).find('a.image').attr('href'));
	      return false;
	 	
	 });
	 
	 
//---------- STOP DOCUMENT READY -------------//  	 
 });

 
 
 
 

	 
	