<!-- Created by Barrett at RRPowered.com -->
<!-- File name index.html -->
<html>
<head>
/libs/jquery/1.4.4/jquery.min.js"
></script>
<link rel=
"stylesheet"
type=
"text/css"
href=
"default.css"
>
<title>A simple jQuery image slide</title>
<script type=
"text/javascript"
>
$(
function
(){
$(
".theme"
).click(
function
(){
var
theme=$(
this
).attr(
"rel"
);
$(
"link"
).attr(
"href"
,$(
this
).attr(
‘rel‘
));
$(
"head"
).append(
"<link>"
);
});
});
</script>
</head>
<body>
<div class=
"theme"
rel=
"blue.css"
>Blue</div>
<div class=
"theme"
rel=
"orange.css"
>Orange</div>
<div class=
"theme"
rel=
"yellow.css"
>Yellow</div>
<div class=
"theme"
rel=
"default.css"
>Default</div>
<div class=
"container"
>
<div class=
"menu"
>Tab1 Tab2 Tab3 Tab4 Tab5</div>
<div class=
"inner"
>
Lorem ipsum dolor sit amet
</div>
<div class=
"footer"
>copyright yoursite 2011</div>
</div>
</body>
</html>