﻿/* Tyler Tomsen @ C2, April 4th, 2010
*   Sitecore's page editor is implemented with Prototype.js.
*   It is well known that Prototype and jQuery do not play well together.
*   As per Sitecore (http://sitecoresupport.blogspot.com/2009/01/jquery-conflicts-with-pageeditor.html), 
*   added this modification (http://docs.jquery.com/Using_jQuery_with_Other_Libraries).
*
*   Every reference to the jQuery '$' nomenclature has been replaced with '$j'
*/
var $j = jQuery.noConflict();

$j(document).ready(function() {
    $j('a[rel=lightbox]').lightBox();
});


//$j(function() { $j('a[@rel*=lightbox]').lightBox();
//});


//$j(document).ready(function() {

//$j('a[@rel*=lightbox]').lightBox();



//}