/*   
Theme Name: Gavle strand
Author: The Farm
Author URI: http://thefarm.se
Version: 1
*/


jQuery().ready(function($) {


	$('.menu-item').hover(function() {
		// handlerIn

		if(!$(this).hasClass('active') && !$(this).hasClass('frontpage') && $(this).attr('data-full-image')) {
			$(this).css('width','164px');
			$(this).css('background','url(' + $(this).attr('data-full-image') + ')');
		}
		
	}, function() {
		// handlerOut
		
		if(!$(this).hasClass('active') && !$(this).hasClass('frontpage') && $(this).attr('data-full-image')) {
			$(this).css('width','35px');
			$(this).css('background','url(' + $(this).attr('data-text-image') + ')');
		}
		
	})




});
