//highslide with gallery
	hs.graphicsDir = 'js/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.wrapperClassName = 'dark borderless floating-caption';
	hs.fadeInOut = true;
	hs.dimmingOpacity = .75;

	// Add the controlbar
	if (hs.addSlideshow) hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: 'fit',
		overlayOptions: {
			opacity: .6,
			position: 'bottom center',
			hideOnMouseOut: true
		}
	});

//highslide
//	hs.graphicsDir = ' js/graphics';
//	hs.wrapperClassName = 'wide-border';
	
	
//lightbox
//$(document).ready(function(){
//	$(".lightbox").lightbox({
//		fitToScreen: true
//	});
//});

//sendEmail
//$(function() {
//    // These first three lines of code compensate for Javascript being turned on and off. 
//    // It simply changes the submit input field from a type of "submit" to a type of "button".
//
//    var paraTag = $('input#submit').parent('p');
//    $(paraTag).children('input').remove();
//    $(paraTag).append('<input type="button" name="submit" id="submit" value="Email Us Now!" />');
//
//    $('#main input#submit').click(function() {
//        $('#main').append('<img src="images/ajax-loader.gif" class="loaderIcon" alt="Loading..." />');
//
//        var name = $('input#name').val();
//        var email = $('input#email').val();
//        var comments = $('textarea#comments').val();
//
//        $.ajax({
//            type: 'post',
//            url: 'sendEmail.php',
//            data: 'name=' + name + '&email=' + email + '&comments=' + comments,
//
//            success: function(results) {
//                $('#main img.loaderIcon').fadeOut(1000);
//                $('ul#response').html(results);
//            }
//        }); // end ajax
//    });
//});
