// JavaScript Document

$(document).ready(function(){
						  

$(".cChange").mouseover(function(){
							 
	$(this).css("background-color", "orange");
							 
							 });

$(".cChange").mouseout(function(){
							 
	$(this).css("background-color", "#cccccc");
							 
							 });

$(".cChangeWrapper").mouseover(function(){

	$(this).css("color", "orange");
							 
							 });

$(".cChangeWrapper").mouseout(function(){
							 
	$(this).css("color", "#666");
							 
							 });

$("#language > div").mouseover(function(){

	$(this).fadeTo(300, 0.7);
							 
							 });

$("#language > div").mouseout(function(){
							 
	$(this).fadeTo(300, 1);
							 
							 });



});
