﻿/* 27-06-2011 - Metaways - Frank Schöler */
(function($) {
	$(document).ready(function(){
		if ($('.buttonsHorizontalRcc_01').length){
			$(".buttonsHorizontalRcc_01 .tabHandle").mouseenter(function(){
				$(this).css("background","url(/freia/styles/img/rcc_tab_bg_over.jpg) no-repeat scroll 0 0 transparent");
				$(this).children().children("img").css("display","block");
			});
			$(".buttonsHorizontalRcc_01 .tabHandle").mouseleave(function(){
				$(this).css("background","url(/freia/styles/img/rcc_tab_bg_disable.jpg) no-repeat scroll 0 0 transparent");
				$(this).children().children("img").css("display","none");
			})
		}
	});
})(jQuery); 
