// JavaScript Document

$(function() {
    $('#photo-gallery').cycle({ 
    fx:    'fade', 
    speed:  600,
	timeout: 5000,
	next:   '#photo-gallery', 
    pause:   1 
 	});
	});

//set hover class
$(document).ready(function() {
 $('#photo-gallery p').hover(function() {
 $(this).addClass('pretty-hover');
 }, function() {
 $(this).removeClass('pretty-hover');
 });
});

// border-control


$(document).ready(function(){
    $("#nav li a:last").css({borderRight: 'none', paddingRight: "0"});
  });


