var video_config = {
	// Basic video data here.  This will allow us to check the config reference without the
	// video specific category_id, like on the spp.
	category_id: "CAT1555",
	flvname: "victor_falselashes.flv",
	xmlname: "video_falselashes.xml",
	
	skus: [
		// leave this blank!
		// This will contain the list of product information indexed by sku_id.  Once this json
		// is resolved, these can be referenced by sku_id:  somesku: { "$ref": "1234" }
	],

	// Add intro and outro text here.  Remember that this becomes a js object, so don't put a comma after the
	// outro text declaration!!
	ext_copy: {
		intro: "The mystery solved. Victor demonstrates the best way to lay down the lashes and open your eyes."
	},
	
	// This is a list of all the cue points for the given video.  When serialized, this list is
	// indexed by id.  This makes it easy for us to quickly reference the cue points for the incoming 
	// product paths recieved from flash.  This also simplifies adding other methods for calling cue points.
	// *** Note: The id for each cue_point is created from the 4 digit minute:second time code for that
	//	   cue.  Also, each cue point has a list of skus_ids that will be shown at that point.
	cue_points: [
		{
			id: "0025",
			copy: "Curl the lashes",
            prods: ["CAT1555PROD370SKU5472"] 
		},
		{
			id: "0039",
			copy: "Apply a generous coat of mascara.",
            prods: ["CAT1555PROD259SKU2148"],
			skus: ["" ]
		},
		{
			id: "0054",
			copy: "Apply a thin black liquid eyeliner to disguise where the natural and false lash meet.",
            prods: ["CAT1555PROD898SKU4469", "CAT1555PROD289SKU5390"] 
		},
		{
			id: "0116",
			copy: "Blacken the lash band to help the lash band blend in with your natural lash line",
            prods: ["CAT1555PROD413SKU5750","CAT1555PROD898SKU4469", "CAT1555PROD289SKU5390"] 
		},
		{
			id: "0132",
			copy: "Lay down the proper amount of Duo Lash Adhesive on the false lash, waiting 15 seconds to allow the adhesive to become tacky.",
            prods: ["CAT1555PROD413SKU5750", "CAT1555PROD321SKU3138"] 
		},
		{
			id: "0146",
			copy: "Bend the lash to mold it into the proper shape and for easier application.",
            prods: ["CAT1555PROD413SKU5750"] 
		},
		{
			id: "0155",
			copy: "Apply false lash (laying down the center first and then securing the ends.  Use the end of a brush to push the lash down onto the lash line prior to the adhesive completely drying.",
            prods: ["CAT1555PROD413SKU5750"] 
		},
		{
			id: "0223",
			copy: "Adjust the lash with the eye open by ‘fluffing up’ or pushing down until both are even.",
            prods: ["CAT1555PROD413SKU5750"] 
		},
		{
			id: "0246",
			copy: "Get this look with all the products listed below.",
            prods: ["CAT1555PROD413SKU5750", "CAT1555PROD321SKU3138", "CAT1555PROD898SKU4469", "CAT1555PROD259SKU2148", "CAT1555PROD289SKU5390", "CAT1555PROD370SKU5472"]  
		}
	] 
};
