jQuery.noConflict();

jQuery(document).ready(function(){

jQuery("#textBox .bar").mouseover(function(){
	jQuery(this).find(".header").addClass("headerAct");
});

jQuery("#textBox .bar").mouseout(function(){
	jQuery(this).find(".header").removeClass("headerAct");
});

jQuery("a.fancybox").fancybox(); 

jQuery("a.fancysmall").fancybox({'width' : 520, 'height' : 220, 'titleShow':false, 'autoDimensions' : false}); 

jQuery("a[rel=fancygroup]").fancybox();

jQuery(".fancyframe").fancybox({
							'width'				: 720,
							'height'			: 560,
							'autoScale'     	: false,
							'overlayColor'		: "#000",
							'overlayOpacity'	: 0.8,
							'transitionIn'		: 'none',
							'transitionOut'		: 'none',
							'type'				: 'iframe'
						});

jQuery(".fancyframewhite").fancybox({
							'width'				: 520,
							'height'			: 350,
							'autoScale'     	: false,
							'overlayColor'		: "#000",
							'overlayOpacity'	: 0.4,
							'transitionIn'		: 'none',
							'transitionOut'		: 'none',
							'type'				: 'iframe'
						});

jQuery('input:checkbox').checkbox({cls:'jquery-safari-checkbox'});

});
