// JavaScript Document
// Global Functions for Website www.topinternational.com


			// select witdh for IE
			/*
			$(document).ready(function(){
			if($.browser.msie){
					$("select").selecteSizer();
				}
			});
			
*/
		//	$(function(){
			

				
				
				//$(function(){
				//$("a.lightbox").lightBox(); // Select all links with lightbox class
				// lightbox
				
				//$("a[@rel*=lightbox]").lightBox(); // Select all links that contains lightbox in the attribute rel			
		
				// jqueryui - Theme elements
				/*
				// Accordion
				$("#accordion").accordion({ header: "h3" });
	
				// Tabs
				$('#tabs').tabs();
				
				});*/

				//Dialog			
				$(function() {
					var options = {
							autoOpen: false,
							width: 'auto',
							modal: true
					};
					var num = 1;
					$("div#cms .dialogUI").each(function() {
							var dlg = $('#dialog-player-' + num).dialog(options);
							$('#player-link-' + num).click(function() {
									dlg.dialog("open");
									return false;
							});
							num = num + 1;
					});
					
					
					$("a.lightbox").lightBox(); // Select all links with lightbox class
				});


			
							
