$(document).ready(function(){
		$('.top_menu_item').each(function(){
		
			var AjDi = $(this).attr("id");
		
			$(this).css({
				'background-image' : 'url("images/menu/' + AjDi + '.png")',
				'background-repeat' : 'no-repeat',
				'background-position' : 'top left'
			});
		
			$(this).hover(
				function () {
					$(this).css({
						'background-image' : 'url("images/menu/hover_' + AjDi + '.png")',
					});
				}, 
				function () {
					$(this).css({
						'background-image' : 'url("images/menu/' + AjDi + '.png")',
					});
				}
			);
		});
	
	
		$('.semsGalleryItem').hover(
				function () {
					$(this).css({
						'background-image' : 'url("images/gal_background_hover.png")',
					});
				}, 
				function () {
					$(this).css({
						'background-image' : 'url("images/gal_background.png")',
					});
				}
			);
		
		$('.semsPicItemCont img').hover(function(){
				$(this).animate({opacity: 0.5});
			},
			function(){
				$(this).animate({opacity: 1});
			}
		);

		$('.controls_prev_div').hover(
			function () {
				$(this).css({
					'background-image' : 'url("images/arrow_left_orange.png")'
				});
			}, 
			function () {
				$(this).css({
					'background-image' : 'url("images/arrow_left.png")'
				});
			}
		);
			
		$('.controls_next_div').hover(
				function () {
					$(this).css({
						'background-image' : 'url("images/arrow_right_orange.png")'
					});
				}, 
				function () {
					$(this).css({
						'background-image' : 'url("images/arrow_right.png")'
					});
				}
		);
	});
