$(document).ready(function() {
			/*
			*   Examples - images
			*/
			$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'outside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (title.length ? '  ' + title : '') + '</span>';
				}
			});

			
			$('a.pdfAnim').fancybox({
				'width'				: '90%',
				'height'			: '80%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'allowtransparency' : true
			});
			
			$('a.popUpRating').fancybox({
				'width'				: '8',
				'height'			: '5',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'allowtransparency' : false
			});
			
			$('a.popUpRating').click(function(){
			
			$('#fancybox-frame').addClass('htmlPopUp');
			});
			
		});
