$(function() {
	//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});

$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.gif/, "-over.gif"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.gif/, ".gif"));
		}
	);
});

$(document).ready(function() 
{
   // Match all link elements with href attributes within the content div
   $('.image-c').qtip({
      content: 'Click on the Image to Enlarge',
      show: 'mouseover',
      hide: 'mouseout',
      style: {name: 'blue'},
	  position: {
		  corner: {
		     target: 'bottomMiddle',
		     tooltip: 'topMiddle'
		  }
	   }

   });
   
	$('#diploma-frames-inner').qtip({
		content: 'Florida State University<br />University of Florida<br />Florida A&M University<br />University of Central Florida<br />University of South Florida<br />University of Miami<br />University of North Florida<br />University of Georgia<br />Valdosta State University<br />Louisiana State University<br />Auburn University',
		show: 'mouseover',
		hide: 'mouseout',
		style: { border: { radius: 5 } },
		style: {name: 'dark'},
		position: {
			corner: {
				target: 'bottomMiddle',
				tooltip: 'topMiddle'
			}
		}

	});
	
	$('#slideshow').before('<div id="slidenav">').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 3000, 
    pager:  '#slidenav',
    pagerEvent: 'mouseover',
    pauseOnPagerHover: true,
    pause: true,
    cleartype: true
	});

	
});


//$(document).ready(function() 
//{

	

//});


