$(document).ready(function() {

	
	$('.modalBox').hide(); 
	$('#modalBackground').remove();
	$('#presentationVideos1, #presentationVideos2, #presentationVideos3').remove();



	$.ajax({
		url : "/Scripts/videos.txt",
		success : function (data) {
		$("body").append(data);
		}
	});

	
	//Load Implement Solution Modal
    var presentationVideos1 = new ModalPopup({
        dynamic: false,
        popupSelector: "#presentationVideos1",
        triggerSelector: ".showpresentationVideos1",
        opacity: ".7",
        closeSelector: "#modalBackground"
    });
    
    //Load Implement Solution Modal
    var presentationVideos2 = new ModalPopup({
        dynamic: false,
        popupSelector: "#presentationVideos2",
        triggerSelector: ".showpresentationVideos2",
        opacity: ".7",
        closeSelector: "#modalBackground"
    });


//Load Implement Solution Modal
    var presentationVideos3 = new ModalPopup({
        dynamic: false,
        popupSelector: "#presentationVideos3",
        triggerSelector: ".showpresentationVideos3",
        opacity: ".7",
        closeSelector: "#modalBackground"
    });


	$('.closeBtnFlash').live('click', function() {
  		closePopupModal();
	});
	
	
});

