/* Author: 

                            <a rel="cutting" class="tabbedbutton">Cutting/Styling</a>
                            <a rel="technical" class="tabbedbutton">Technical</a>
                            <a rel="specialist" class="tabbedbutton">Specialist</a>

*/


$('.tabbedbutton').click(function(){
	
	$('.tabbedbutton').removeClass('active');
	$(this).addClass('active');
	
	var itemID = $(this).attr('rel');

	$('.pricing_table').hide();
	$('.tab_'+itemID+'').show();


});

$(document).ready(function(){
	$(".galleryimg").colorbox({transition:"fade", maxHeight: "90%", photo: "true", scalePhotos: "true", preloading: "true", rel: 'galimg'});
});

$( ".datepicker" ).datepicker( { dateFormat : "dd/mm/yy" } );


$('section.team').hover(function() {
	$(this).children('h5').fadeIn('500');
});

$('section.team').mouseleave(function() {
	$(this).children('h5').fadeOut('500');
});


$(document).ready(function(){

  // Fix placeholders in IE
  $('input[placeholder], textarea[placeholder]').placeholder();
  
  $(".home_thumbs img:last-child").css({ marginRight:"0px" })

});
