
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 1
    });
});



jQuery.fn.toggleText = function(a, b) {
	return this.each(function() {
	jQuery(this).text(jQuery(this).text() == a ? b : a);

	});

};




  $(document).ready(function(){
	
	$('#services h4') .next().hide();

	$('#services h4') .append('<a href="#">MORE</a>');


     	$('#services h4.design a').click(function(){
		$('h4.design') .next().slideToggle('slow');
		$('h4.design a').toggleText('MORE','LESS');
		return false;
   	});

     	$('#services h4.templates a').click(function(){
		$('h4.templates') .next().slideToggle('slow');
		$('h4.templates a').toggleText('MORE','LESS');
		return false;
   	});

     	$('#services h4.cms a').click(function(){
		$('h4.cms') .next().slideToggle('slow');
		$('h4.cms a').toggleText('MORE','LESS');
		return false;
   	});

     	$('#services h4.other a').click(function(){
		$('h4.other') .next().slideToggle('slow');
		$('h4.other a').toggleText('MORE','LESS');
		return false;
   	});

   });