jQuery(document).ready(function() {

	function mycarousel_initCallback(carousel) {
	
		jQuery('#mycarousel-next').bind('click', function() {
			carousel.next();
			return false;
		});
	
		jQuery('#mycarousel-prev').bind('click', function() {
			carousel.prev();
			return false;
		});
	};


	jQuery('#projects').jcarousel({
		auto: 4,
        scroll: 1,
		wrap: 'both',
        initCallback: mycarousel_initCallback,
		buttonNextHTML: null,
        buttonPrevHTML: null
    });
	
	
	
	jQuery('.rf-submenu a').mouseenter( function() {
		source = jQuery(this).parents('.rf-inner').children('.rf-category-pic').html();
		var rel = jQuery(this).attr('rel');
		var title = jQuery(this).attr('title');
		jQuery(this).parents('.rf-inner').find('.rf-category-pic div').html('<img src="'+rel+'" />');
		jQuery(this).parents('.rf-inner').find('.rf-category-pic span').html(title);
		
		jQuery('.rf-submenu a').mouseleave( function() {
			jQuery(this).parents('.rf-inner').children('.rf-category-pic').html(source);
		});
	});
	
	
});
