Jay Skript and the Domsters
Lorem Ipsum Dolor
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras varius accumsan tellus, in pulvinar lacus fermentum ut. Phasellus sem ante, rhoncus congue pellentesque a, pellentesque in purus. Aliquam in rutrum nulla. Nunc ut turpis a enim aliquam dapibus vitae scelerisque arcu. Ut condimentum nisi aliquet, molestie velit sed, aliquam arcu. Curabitur at est vel quam fringilla tincidunt. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque lobortis sed quam nec hendrerit. Proin dolor massa, pulvinar ut vestibulum ut, euismod vulputate diam. Quisque nec accumsan lacus, eu ullamcorper orci. Praesent condimentum feugiat vulputate. Suspendisse pulvinar, erat non finibus bibendum, erat urna dictum velit, nec pharetra magna mauris vel massa. Quisque sodales orci vitae ipsum rutrum, et ullamcorper leo posuere. Mauris dapibus ligula quam, nec pharetra ex porta nec. Mauris feugiat, nibh non varius tempus, massa turpis convallis risus, id tempor neque ante vel felis.
@import url(layout.css);
@import url(color.css);
@import url(typography.css);
body {
color: #fb5;
background-color: #334;
}
a:link {
color: #445;
background-color: #eb6;
}
a:visited {
color: #345;
background-color: #eb6;
}
a:hover {
color: #667;
background-color: #fb5;
}
a:active {
color: #778;
background-color: #ec8;
}
header {
color: #ec8;
background-color: #334;
border-color: #667;
}
header nav {
color: #445;
background-color: #789;
border-color: #667;
}
article {
color: #223;
background-color: #edc;
border-color: #667;
}
header nav ul {
border-color: #99a;
}
header nav a:link,header nav a:visited {
color: #eef;
background-color: transparent;
border-color: #99a;
}
header nav a:hover {
color: #445;
background-color: #eb6;
}
header nav a:active {
color: #667;
background-color: #ec8;
}
article img {
border-color: #ba9;
outline-color: #dcb;
}
#imagegallery a {
background-color: transparent;
}
header nav a.here:link,
header nav a.here:visited,
header nav a.here:hover,
header nav a.here:active {
color: #eef;
background-color: #799;
}
tr.odd td {
color: #223;
background-color: #ec8;
}
tr.highlight td {
color: #223;
background-color: #cba;
}
th {
color: #edc;
background-color: #455;
}
tr td {
color: #223;
background-color: #eb6;
}
section, header, article, nav {
display: block;
}
* {
padding: 0;
margin: 0;
}
body {
margin: 1em 10%;
background-image: url(../images/background.gif);
background-attachment: fixed;
background-position: top left;
background-repeat: repeat-x;
max-width: 80em;
}
header {
background-image: url(../images/guitarist.gif);
background-repeat: no-repeat;
background-position: bottom right;
border-with: .1em;
border-style: solid;
border-bottom-width: 0;
}
header nav {
background-image: url(../images/navbar.gif);
background-repeat: repeat-x;
background-position: bottom left;
border-with: .1em;
border-style: solid;
border-bottom-width: 0;
border-top-width: 0;
padding-left: 10%;
}
header nav ul {
width: 100%;
overflow: hidden;
border-left-width: .1em;
border-left-style: solid;
}
header nav li {
display: inline;
}
header nav li a {
display: block;
float: left;
padding: .5em 2em;
border-right: .1em solid;
}
article {
border-width: .1em;
border-style: solid;
border-top-width: 0;
padding: 2em 10%;
line-height: 1.8em;
}
article img {
border-width: .1em;
border-style: solid;
outline-width: .1em;
outline-style: solid;
}
#about header {
background-image: url(../images/lineup.gif);
}
#photos header {
background-image: url(../images/basshead.gif);
}
#live header {
background-image: url(../images/bassist.gif);
}
#contact header {
background-image: url(../images/drummer.gif);
}
#slideshow {
width: 150px;
height: 150px;
position: relative;
overflow: hidden;
}
#preview {
position: absolute;
border-width: 0;
outline-width: 0
}
#frame {
position: absolute;
top: 0;
left: 0;
z-index: 99;
}
#imagegallery li {
display: inline;
}
dl {
overflow: hidden;
}
dt {
float: left;
}
dd {
float: left;
}
td {
padding: .5em 3em;
}
label {
display: block;
}
fieldset {
border: 0;
}
body {
font-size: 76%;
font-family: "Helvetica","Arial",sans-serif;
}
body * {
font-size: 1em;
}
a {
font-weight: bold;
text-decoration: none;
}
header nav {
font-family: "Lucida Grande","Helvetica","Arial",sans-serif;
}
header nav a {
text-decoration: none;
font-weight: bold;
}
article {
line-height: 1.8em;
}
article p {
margin: 1em 0;
}
h1 {
font-family: "Georgia","Times New Roman",sans-serif;
font: 2.4em normal;
}
h2 {
font-family: "Georgia","Times New Roman",sans-serif;
font: 1.8em normal;
margin-top: 1em;
}
h3 {
font-family: "Georgia","Times New Roman",sans-serif;
font: 1.4em normal;
margin-top: 1em;
}
#imagegallery li {
list-style-type: none;
}
textarea {
font-family: "Helvetica","Arial",sans-serif;
}
dt {
margin-right: 1em;
}
dd {
margin-right: 3em;
}
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}
function addClass(element,value) {
if (!element.className) {
element.className = value;
} else {
newClassName = element.className;
newClassName+= " ";
newClassName+= value;
element.className = newClassName;
}
}
function insertAfter(newElement,targetElement) {
var parent = targetElement.parentNode;
if (parent.lastChild == targetElement) {
parent.appendChild(newElement);
} else {
parent.insertBefore(newElement,targetElement.nextSibling);
}
}
// 突出当前页面链接的显示,同时为几个超链接页面的body元素添加id属性,以支持为每个页面应用不同的样式
function highlightPage(href) {
if (!document.getElementsByTagName) return false;
if (!document.getElementById) return false;
var headers = document.getElementsByTagName('header');
if (headers.length == 0) return false;
var navs = headers[0].getElementsByTagName('nav');
if (navs.length == 0) return false;
var links = navs[0].getElementsByTagName("a");
var linkurl;
for (var i=0; i final_x) {
dist = Math.ceil((xpos - final_x)/10);
xpos = xpos - dist;
}
if (ypos < final_y) {
dist = Math.ceil((final_y - ypos)/10);
ypos = ypos + dist;
}
if (ypos > final_y) {
dist = Math.ceil((ypos - final_y)/10);
ypos = ypos - dist;
}
//设置elem元素的
elem.style.left = xpos + "px";
elem.style.top = ypos + "px";
//迭代调用函数自身,一直循环到满足函数开头的退出条件为止
var repeat = "moveElement('"+elementID+"',"+final_x+","+final_y+","+interval+")";
elem.movement = setTimeout(repeat,interval);
}
function prepareSlideshow() {
// 实现幻灯片功能
if (!document.getElementsByTagName) return false;
if (!document.getElementById) return false;
if (!document.getElementById("intro")) return false;
var intro = document.getElementById("intro");
var slideshow = document.createElement("div");
slideshow.setAttribute("id","slideshow");
var frame = document.createElement("img");
frame.setAttribute("src","images/frame.gif");
frame.setAttribute("alt","");
frame.setAttribute("id","frame");
slideshow.appendChild(frame);
var preview = document.createElement("img");
preview.setAttribute("src","images/slideshow.gif");
preview.setAttribute("alt","a glimpse of what awaits you");
preview.setAttribute("id","preview");
slideshow.appendChild(preview);
insertAfter(slideshow,intro);
var links = document.getElementsByTagName("a");
var destination;
for (var i=0; i([\s\S]+)<\/article>/);
if (matches.length > 0) {
// 匹配结果是一个数组,第一个数组元素是与整个模式完整匹配的部分
// 匹配结果数组的第二个元素(索引为1),是responseText中与捕获组中的模式匹配的部分。
// 因为本例中只定义了一个捕获组,所以matches也只包含两个元素。
thetarget.innerHTML = matches[1];
} else {
thetarget.innerHTML = 'Oops, there was an error. Sorry.
';
}
} else {
thetarget.innerHTML = '' + request.statusText + '
';
}
}
};
request.send(data);
return true;
};
Jay Skript and the Domsters
Welcome to the official website of Jay Skript and the Domsters.
Here, you can learn more about the band,
view photos of the band,
find out about tour dates
and get in touch with the band.
Jay Skript and the Domsters
About the band
Jay Skript
Jay Skript is going to rock your world!
Together with his compatriots The Domsters, Jay is set for world domination. Just you wait and see.
Jay Skript has been on the scene since the mid nineties. His talent hasn't always been recognized or fully appreciated. In the early days, he was often unfavorably compared to bigger, similarly-named artists. That's all in the past now.
The Domsters
The Domsters have been around, in one form or another, for almost as long. It's only in the past few years that The Domsters have settled down to their current, stable line-up. Now they're a rock-solid bunch: methodical and dependable.
Jay Skript and the Domsters
Tour dates
Date
City
Venue
June 9th
Portland, OR
Crystal Ballroom
June 10th
Seattle, WA
Crocodile Cafe
June 12th
Sacramento, CA
Torch Club
June 17th
Austin, TX
Speakeasy
Jay Skript and the Domsters
Contact the band
submit.html
Jay Skript and the Domsters
Thanks!
Thanks for contacting us.We'll get back to you as soon as we can.