
$(document).ready(function(){
$(".big").click(function(){
$(".Model_10 .content p").css({
fontSize:20,
lineHeight:"30px"
});
$(this).css({
cursor:"default",
color:"#ff0000"
});
$(".mid,.small").css({
cursor:"pointer",
color:"#333"
});
});

$(".big").mouseover(function(){
$(this).css({
textDecoration:"underline"
});
});
$(".big").mouseout(function(){
$(this).css({
textDecoration:"none"
});
});

$(".mid").click(function(){
$(".Model_10 .content p").css({
fontSize:14
});
$(this).css({
cursor: "default",
color:"#ff0000"
});
$(".big,.small").css({
cursor: "pointer",
color:"#333"
});
});

$(".mid").mouseover(function(){
$(this).css({
textDecoration:"underline"
});
});
$(".mid").mouseout(function(){
$(this).css({
textDecoration:"none"
});
});

$(".small").click(function(){
$(".Model_10 .content p").css({
fontSize:12
});
$(this).css({
cursor: "default",
color:"#ff0000"
});
$(".mid,.big").css({
cursor: "pointer",
color:"#333"
});
});

$(".small").mouseover(function(){
$(this).css({
textDecoration:"underline"
});
});
$(".small").mouseout(function(){
$(this).css({
textDecoration:"none"
});
});
});





