$(function(){
	$('.specialButton').click(function() {
		window.location = $('a:first', this).attr('href');
	});

	
	$('.specialButton').hover(
		function() {
			$(this).addClass('pretty-hover01');
		},
		function() {
			$(this).removeClass('pretty-hover01');
		}
	)
	
	$('.serviceButton').click(function() {
		window.location = $('a:first', this).attr('href');
	});

	
	$('.serviceButton').hover(
		function() {
			$(this).addClass('pretty-hover');
		},
		function() {
			$(this).removeClass('pretty-hover');
		}
	)

 });
