Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
410 rajveer 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
<meta http-equiv="Content-Language" content="en-us" />	
6
<!--prevent MS Office toolbar from changing layout-->
7
<meta http-equiv="imagetoolbar" content="false" />
8
<meta name="MSSmartTagsPreventParsing" content="true" />
9
 
413 rajveer 10
<link rel="stylesheet" href="/Website/css/style.css" type="text/css" media="all" />
11
<link rel="stylesheet" href="/Website/css/menu.css" type="text/css" media="all" />
12
<link rel="stylesheet" href="/Website/css/ui.base.css" type="text/css" media="all" />
13
<link rel="stylesheet" href="/Website/css/style.cssui.all.css" type="text/css" media="all" />
410 rajveer 14
 
413 rajveer 15
<script language="javascript" src="/Website/js/iehover-fix.js" type="text/javascript"></script>
16
<script language="javascript" src="/Website/js/jquery-1.3.2.min.js" type="text/javascript"></script>
17
<script src="/Website/js/jquery-ui.min.js" type="text/javascript"></script>
18
<script type="text/javascript" language="javascript" src="/Website/js/ratingsys.js"></script>  
410 rajveer 19
 
20
<script type="text/javascript">
21
$(function() {
22
	$("#tabs").tabs();
23
});
24
</script>
25
 
26
  <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
27
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
28
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
29
 
30
  <script>
31
  $(document).ready(function() {
32
    $("#tabs").tabs();
33
  });
34
  </script>
35
 
36
<script type="text/javascript">
37
$(document).ready(
38
function() {
39
		$(".demo").tabs();
40
	}
41
);
42
</script>
43
<script type="text/javascript">
44
$(document).ready(
45
function() {
46
		$(".controls").tabs();
47
	}
48
);
49
</script>
50
<!--[if IE ]>
51
<link media="all" href="css/ie.css" type="text/css" rel="stylesheet" />
52
<![endif]-->
53
<!--[if lte IE 6]> 
54
<script type="text/javascript">
55
sfHover = function() {
56
	var sfEls = document.getElementById("sideNav").getElementsByTagName("LI");
57
	for (var i=0; i<sfEls.length; i++) {
58
		sfEls[i].onmouseover=function() {
59
			this.className+=" sfhover";
60
		}
61
		sfEls[i].onmouseout=function() {
62
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
63
		}
64
	}
65
}
66
if (window.attachEvent) window.attachEvent("onload", sfHover);
67
</script>
68
<![endif]-->
69
<script language="javascript">
70
 $(document).ready(function(){
71
	$("#hdr0").click(
72
		function()
73
		{
74
			$('#winker0').slideToggle('slow', function(){$("#hdr0").toggleClass('swapy');});			
75
		}		
76
	);
77
	$("#hdr1").click(
78
		function()
79
		{
80
			$('#winker1').slideToggle('slow', function(){$("#hdr1").toggleClass('swapy');});
81
		}		
82
	);
83
	$("#hdr2").click(
84
		function()
85
		{
86
			$('#winker2').slideToggle('slow', function(){$("#hdr2").toggleClass('swapy');});
87
		}		
88
	);
89
	$("#hdr3").click(
90
		function()
91
		{
92
			$('#winker3').slideToggle('slow', function(){$("#hdr3").toggleClass('swapy');});
93
		}		
94
	);
95
 });
96
</script>
97
 
98
<script type="text/javascript">
99
function addToMyResearch(entityId, userName)
100
{
101
	url = "http://localhost:8080/MyResearch/" + userName + "_" + entityId;
102
	xmlhttp=new XMLHttpRequest();
103
 
104
	xmlhttp.onreadystatechange=function()
105
  	{
106
  	if (xmlhttp.readyState==4 && xmlhttp.status==200)
107
    	{
108
    	document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
109
    	}
110
  	}
111
	xmlhttp.open("GET",url,true);
112
	xmlhttp.send();
113
 
114
}
115
</script>
413 rajveer 116
 
117
 
118
<style type="text/css">
119
 
120
 
121
 
122
a {
123
	color: #c75f3e;
124
}
125
 
126
#mytable {
127
	width: 700px;
128
	padding: 0;
129
	margin: 0;
130
}
131
 
132
caption {
133
	padding: 0 0 5px 0;
134
	width: 700px;	 
135
	font: italic 11px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
136
	text-align: right;
137
}
138
 
139
th {
140
	font: bold 11px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
141
	color: #4f6b72;
142
	border-right: 0px solid #C1DAD7;
143
	border-bottom: 1px solid #C1DAD7;
144
	border-top: 1px solid #C1DAD7;
145
	letter-spacing: 2px;
146
	text-align: left;
147
	padding: 6px 6px 6px 12px;
148
	background: #CAE8EA url(images/bg_header.jpg) no-repeat;
149
}
150
 
151
th.nobg {
152
	border-top: 0;
153
	border-left: 0;
154
	border-right: 1px solid #C1DAD7;
155
	background: none;
156
}
157
 
158
td {
159
	border-right: 0px solid #C1DAD7;
160
	border-bottom: 1px solid #C1DAD7;
161
	background: #fff;
162
	padding: 6px 6px 6px 12px;
163
	color: #4f6b72;
164
}
165
 
166
 
167
td.alt {
168
	background: #F5FAFA;
169
	color: #797268;
170
}
171
 
172
th.spec {
173
	border-left: 1px solid #C1DAD7;
174
	border-top: 0;
175
	background: #fff url(images/bullet1.gif) no-repeat;
176
	font: bold 10px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
177
}
178
 
179
th.specalt {
180
	border-left: 1px solid #C1DAD7;
181
	border-top: 0;
182
	background: #f5fafa url(images/bullet2.gif) no-repeat;
183
	font: bold 10px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
184
	color: #797268;
185
}</style>
186
 
187
 
410 rajveer 188
<title>Shop 2020</title>
189
</head>
190
<body>
191
	#parse ( "templates/header.vm" )
192
 
193
	<div class="wrapper">
194
		<div class="mainmenu">
195
			<ul id="nav">
196
				<li><a href="#">HOME</a></li>
197
				<li class="sublink"><a href="#" class="sublink">PHONE CATEGORIES</a></li>
198
				<li class="sublink"><a href="#" class="sublink">PHONE ACCESSORIES</a></li>
199
				<li><a href="#">SHOP BY BRANDS</a></li>
200
				<li><a href="#">BEST DEALS</a></li>					
201
				<li><a href="#">FAQs</a></li>
202
			</ul>
203
			</div>
204
		<div class="findBox">
205
			<input type="text" id="" class="txtfld"/>
206
			<select name="cat" id="cat" class="cat">
207
				<option value="0">All Categories</option>
208
				<option value="1">Business Phones</option>
209
				<option value="2">High-end Multimedia Phones</option>
210
				<option value="2">Low-end Multimedia Phones</option>
211
			</select>
212
			<input type="button" value="Search" name="" id="" class="srchbtn" />
419 rajveer 213
			<a href="/Website/cart" class="cartbtn">Cart(1)</a>
410 rajveer 214
		</div>
413 rajveer 215
 
216
 
410 rajveer 217
		<div class="contentArea">
413 rajveer 218
			$action.getShoppingCartSnippets()
410 rajveer 219
		</div>	
220
	</div>	
221
 
222
 
223
 
224
	</div>	
225
</div>
226
			#parse ( "templates/footer.vm" )
227
</body>
228
</html>