﻿$(document).ready(function() { SetModal(); });

function SetModal() {

//    var classes = $('a.modal-me').attr("class").split(" ");

//    classes = jQuery.grep(classes, function(value) {
//        return value != "modal-me";
//    });

//    var width = jQuery.grep(classes, function(value) {
//        if (value.indexOf("width") >= 0) {
//            return value.split("-")[1];
//        }
//    });

//    var height = jQuery.grep(classes, function(value) {
//        if (value.indexOf("height") >= 0) {
//            return value.split("-")[1];
//        }
//    });

//    alert(width);
//    alert(height);
//    
    $('a.modal-me').colorbox({ iframe: false });
    $('a.i-modal-me').colorbox({ iframe: true, width: '33%', height: '450px' });
}