movies = new Array(100);		// This is the array for movies handle name !!! no space or quote in the name !!!
products = new Array(50);		// This is the array for product handle name 
dvd = new Array(50);

mtitles = new Array(100);		// This is the array for movies title !!! can have space but if you want to use double quote, do this  --> \"
ptitles = new Array(50);		// This is the array for product title
dtitles = new Array(50);


movies[1] = "kungfuhustle";
movies[2] = "flyingdaggers";
movies[3] = "loveliza";
movies[4] = "blindspot";
movies[5] = "zboys";
movies[6] = "cthd";

products[1] = "leonredbone";
products[2] = "yoyo_album";
products[3] = "producers";
products[4] = "spiderman_game";


dvd[1] = "ridinggiants"
dvd[2] = "ibrahim"
dvd[3] = "blackhawkdownsuperbit"
dvd[4] = "pinkpanther"
dvd[5] = "dasboot"
dvd[6] = "spiderman_deluxe"
dvd[7] = "spiderman_animation"
dvd[8] = "fogofwar"




mtitles[1] = "Kung Fu Hustle";
mtitles[2] = "House of Flying Daggers";
mtitles[3] = "Love Liza";
mtitles[4] = "Blind Spot - Hilter's Secretary";
mtitles[5] = "Dogtown and Z-Boys";
mtitles[6] = "Crouching Tiger Hidden Dragon";


ptitles[1] = "Leon Redbone -- Anytime";
ptitles[2] = "Yo-Yo Ma (New Album)";
ptitles[3] = "The Producers (The Play)";
ptitles[4] = "Spider-Man (The Video Game)";


dtitles[1] = "Riding Giants"
dtitles[2] = "Monsieur Ibrahim";
dtitles[3] = "Black Hawkdown SuperBit";
dtitles[4] = "Pink Panther Film Collection"
dtitles[5] = "Das Boot: The Original Uncut Version"
dtitles[6] = "Spider-Man Deluxe Edition"
dtitles[7] = "Spider-Man The New Animated Series"
dtitles[8] = "The Fog of War";















