$(document).ready(function() 
				  {
	
					function updateImage(ev) 
					{
						var me = $(this);
						var id = me.attr('id');
						
						if (id != '')
						{							
							var img = $('.h_games_menu_second_col img');
							var imgPath = '//static.virgingaming.com/static/img/menu-game/';
							var tit = $('.h_games_img_title');
							var desc = $('.h_games_img_text');
							var title;
							var descrip;
							
							switch(id)
							{
				    			case 'assassin':  title ='ASSASSINS CREED: BROTHERHOOD'; descrip=''; break;
				    			case 'dirt3':	  title ='DIRT3';   descrip=''; break;
				    			case 'fifa11':	  title ='FIFA 11';  descrip='';  break;
								case 'fifa12':	  title ='FIFA 12';  descrip='';  break;
				    			case 'fight':	  title ='FIGHT NIGHT CHAMPION';    descrip=''; break;
				    			case 'nhl11':	      title ='NHL 11';      descrip=''; break;
								case 'nhl12':	      title ='NHL 12';      descrip=''; break;
				    			case 'nfl11':	  title ='MADDEN NFL 11';   descrip=''; break;
				    			case 'nfl12':	  title ='MADDEN NFL 12';   descrip=''; break;
				    			case 'mma':	      title ='MMA';      descrip=''; break;
				    			case 'nba11':	  title ='NBA 2K11';   descrip=''; break;
								case 'nba12':	  title ='NBA 2K12';   descrip=''; break;
								case 'bf3':	  title ='Battlefield 3';   descrip=''; break;
				    			default:
				    				title ='ONLY ON VG';
				    			break;
							}							
							
							//console.log(title);
							
							imgPath += me.attr('id') + '.png';
							img.attr('src',imgPath);
							tit.html('<p>' + title + '</p>');
							desc.html('<p>' + descrip + '</p>');
						}										
					}					
					
					$('.h_games_menu_first_col ul li').bind('mouseover', updateImage);
																
				  });

