﻿// JSframework

 var $j = jQuery.noConflict();

// Start: of JS Framework
// this is created for studio to be able execute their JS on page load from file and to avoid embeded JS in html

function RunOnPageReady(fnCall){ 
 $j(document).ready(function() {
 fnCall();   
 });
 }
 
// End: of studio JS Framework