/*
Image Preloading ------------------------|
Author: 2Dmedia Ltd
Notes: Build up img_src Array with the list of images you want to preload (usually hovers). Last element mustn't have a comma to close.
*/
img_src = Array(
"/images/casino_cat_play_button_h.jpg",
"/images/casino_play_button_hover.jpg",
"/images/contact_send_button_hover.jpg",
"/images/game_review_button_hover.jpg",
"/images/game_rules_button_hover.jpg",
"/images/games_blackjack_hover.jpg",
"/images/games_craps_hover.jpg",
"/images/games_poker_hover.jpg",
"/images/games_slots_hover.jpg",
"/images/games_video_poker_hover.jpg",
"/images/home_top5_button_hover.jpg",
"/images/latest_casino_play_hover.jpg",
"/images/play_for_fun_or_money_hover.jpg",
"/images/play_now_button_hover.jpg",
"/images/small_play_now_button_hover.jpg",
"/images/twitter_right_hover.jpg",
"/images/casino_cat_review_button_h.jpg"
);
 
img_array = new Array();
 
for (counter in img_src) {
img_array[counter] = new Image();
img_array[counter].src = img_src[counter];
}

