﻿$(document).ready(function(){
	//Tabs
	$("#tabs > ul").tabs({ fx: { opacity: 'toggle' } });
							
	//registration form
	$("#register").click(function(){
		$("#registration").dialog({ 
			title: 'Request Access',
		    modal: true,
		    height: 350, 
		    width: 550,
		    overlay: { 
		        opacity: 0.6, 
		        background: "black" 
		    } 
		});
	});
	
	//poster
	$("#viewposter").click(function(){
		$("#poster").dialog({ 
			title: 'Poster',
		    modal: true,
		    height: 660, 
		    width: 460,
		    overlay: { 
		        opacity: 0.6, 
		        background: "black" 
		    } 
		});
	});
	
	//view sample resources - English 3201
	$("#viewsample1").click(function(){
		$("#sample1").dialog({ 
			title: 'Sample Resources - English 3201',
		    modal: true,
		    height: 450, 
		    width: 700,
		    overlay: { 
		        opacity: 0.6, 
		        background: "black" 
		    } 
		});
	});
	
	//view sample resources - Biology 3201
	$("#viewsample2").click(function(){
		$("#sample2").dialog({ 
			title: 'Sample Resources - Biology 3201',
		    modal: true,
		    height: 500, 
		    width: 700,
		    overlay: { 
		        opacity: 0.6, 
		        background: "black" 
		    } 
		});
	});
	
	//view sample resources - French 3200
	$("#viewsample3").click(function(){
		$("#sample3").dialog({ 
			title: 'Sample Resources - French 3200',
		    modal: true,
		    height: 650, 
		    width: 700,
		    overlay: { 
		        opacity: 0.6, 
		        background: "black" 
		    } 
		});
	});
	
	//view sample resources - Math 3205
	$("#viewsample4").click(function(){
		$("#sample4").dialog({ 
			title: 'Sample Resources - Advanced Mathematics 3205',
		    modal: true,
		    height: 550, 
		    width: 700,
		    overlay: { 
		        opacity: 0.6, 
		        background: "black" 
		    } 
		});
	});
	
});