// JavaScript Document

$(document).ready( function(){

$('.navigation li').hover( function(){
	
		$(this).find('ul').css('display','block');
		$(this).find('ul ul').css('display','none');
	
	}, function(){
	$(this).find('ul').css('display','none');	
	
	})
	
	var screenWidth = $(window).width()	
	if(screenWidth<1024){
	
		$('.graphic span').css('marginRight','-13px')
		$('.graphic span').css('backgroundPosition','112.5% 0')
	
	}else{}
	
	$(window).resize( function(){
	
	
var screenWidth = $(window).width()	
	if(screenWidth<1024){
	
		$('.graphic span').css('marginRight','-13px')
		$('.graphic span').css('backgroundPosition','113% 0')
	
	}else{
		$('.graphic span').css('marginRight','-88px')
		$('.graphic span').css('backgroundPosition','100% 0')
		}							   
	})

})
